From a8126b4c26e6d7e8ff6720bc05266a2febb79555 Mon Sep 17 00:00:00 2001 From: Ted Unangst Date: Tue, 26 Nov 2019 00:33:27 -0500 Subject: [PATCH] fix format string --- web.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web.go b/web.go index c7bbd97..60df542 100644 --- a/web.go +++ b/web.go @@ -910,7 +910,7 @@ func getbacktracks(xid string) []string { f = f[:idx] } if !strings.HasPrefix(f, "https://") { - f = fmt.Sprintf("%https://%s/inbox", f) + f = fmt.Sprintf("%%https://%s/inbox", f) } rcpts = append(rcpts, f) }