fix format string
This commit is contained in:
parent
ecbd80352f
commit
a8126b4c26
1 changed files with 1 additions and 1 deletions
2
web.go
2
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)
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue