1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-13 20:25:57 +01:00

Fix incorrect parsing of wildcard user password.

This commit is contained in:
Juliusz Chroboczek 2024-10-25 15:41:05 +02:00
parent df274ad6ea
commit 1db15045a3

View file

@ -300,7 +300,7 @@ func specialUserHandler(w http.ResponseWriter, r *http.Request, g, pth string, w
if pth == "" { if pth == "" {
userHandler(w, r, g, "", wildcard) userHandler(w, r, g, "", wildcard)
return return
} else if pth == ".password" { } else if pth == "/.password" {
passwordHandler(w, r, g, "", wildcard) passwordHandler(w, r, g, "", wildcard)
return return
} }