Fix parameters for oauth auth handler

This commit is contained in:
Melon 2024-05-31 14:57:00 +01:00
parent 68f274b45e
commit 60e6d7e80b
Signed by: melon
GPG Key ID: 6C9D970C50D26A25

View File

@ -125,7 +125,7 @@ func (h *HttpServer) oauthUserAuthorization(rw http.ResponseWriter, req *http.Re
return "", err
}
auth, err := h.internalAuthenticationHandler(nil, req)
auth, err := h.internalAuthenticationHandler(rw, req)
if err != nil {
return "", err
}