diff --git a/client.go b/client.go index 7a140c0..6eb3dec 100644 --- a/client.go +++ b/client.go @@ -8,6 +8,7 @@ import ( "io" "net/http" "net/http/cookiejar" + "strings" "time" "github.com/pquerna/otp/totp" @@ -151,7 +152,7 @@ func (c *client) findRecords(ctx context.Context, record nameserverRecord, domai } if matchContent { - request.Content = record.Content + request.Content = strings.Trim(record.Content, "\"") } response, err := c.call(ctx, "nameserver.info", request)