From 3ee55f2f51cb85f8350c511d8048e6e996b22a31 Mon Sep 17 00:00:00 2001 From: Xueshan Feng Date: Sat, 24 Sep 2022 23:43:43 -0700 Subject: [PATCH] Remove leading space from https://api.ote-godaddy.com endpoint. --- provider/godaddy/client.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/provider/godaddy/client.go b/provider/godaddy/client.go index d4be96a32..d7e0485f2 100644 --- a/provider/godaddy/client.go +++ b/provider/godaddy/client.go @@ -105,7 +105,7 @@ func NewClient(useOTE bool, apiKey, apiSecret string) (*Client, error) { var endpoint string if useOTE { - endpoint = " https://api.ote-godaddy.com" + endpoint = "https://api.ote-godaddy.com" } else { endpoint = "https://api.godaddy.com" }