fix format string

This commit is contained in:
Ted Unangst 2019-11-26 00:33:27 -05:00
parent ecbd80352f
commit a8126b4c26
1 changed files with 1 additions and 1 deletions

2
web.go
View File

@ -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)
}