diff --git a/appview/signup/signup.go b/appview/signup/signup.go index fcadd7da..c720818d 100644 --- a/appview/signup/signup.go +++ b/appview/signup/signup.go @@ -219,7 +219,7 @@ func (s *Signup) complete(w http.ResponseWriter, r *http.Request) { err = s.cf.CreateDNSRecord(r.Context(), dns.Record{ Type: "TXT", Name: "_atproto." + username, - Content: "did=" + did, + Content: fmt.Sprintf(`"did=%s"`, did), TTL: 6400, Proxied: false, })