missed a spot requiring user seperator

This commit is contained in:
Ted Unangst 2019-07-24 23:24:48 -04:00
parent a84f5d8a50
commit f003de9cc9
1 changed files with 1 additions and 1 deletions

2
fun.go
View File

@ -438,7 +438,7 @@ func ziggy(username string) (keyname string, key *rsa.PrivateKey) {
ziggies[username] = key ziggies[username] = key
ziggylock.Unlock() ziggylock.Unlock()
} }
keyname = fmt.Sprintf("https://%s/u/%s#key", serverName, username) keyname = fmt.Sprintf("https://%s/%s/%s#key", serverName, userSep, username)
return return
} }