forked from tangled.org/core
this repo has no description

appview/signup: wrap the TXT record content in quotes

Signed-off-by: Anirudh Oppiliappan <anirudh@tangled.sh>

anirudh.fi 2bc0d160 3fb08dd7

verified
Changed files
+1 -1
appview
signup
+1 -1
appview/signup/signup.go
···
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,
})