all repos — honk @ fcb502c0b9dfb4578e1d4f75c23fe0f6d9a266e1

my fork of honk

fix format string
Ted Unangst tedu@tedunangst.com
Tue, 26 Nov 2019 00:33:27 -0500
commit

fcb502c0b9dfb4578e1d4f75c23fe0f6d9a266e1

parent

2b081dc63590ac40e5cce10dd5a69cfe889f3bbf

1 files changed, 1 insertions(+), 1 deletions(-)

jump to
M web.goweb.go

@@ -910,7 +910,7 @@ if idx != -1 {

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