fix format string
This commit is contained in:
parent
ecbd80352f
commit
a8126b4c26
2
web.go
2
web.go
|
@ -910,7 +910,7 @@ func getbacktracks(xid string) []string {
|
||||||
f = f[:idx]
|
f = f[:idx]
|
||||||
}
|
}
|
||||||
if !strings.HasPrefix(f, "https://") {
|
if !strings.HasPrefix(f, "https://") {
|
||||||
f = fmt.Sprintf("%https://%s/inbox", f)
|
f = fmt.Sprintf("%%https://%s/inbox", f)
|
||||||
}
|
}
|
||||||
rcpts = append(rcpts, f)
|
rcpts = append(rcpts, f)
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue