Fixed wrong copy paste in Header

This commit is contained in:
Juan Font Alonso 2022-06-20 21:19:49 +02:00
parent 51b8c659f1
commit 116bef25a7

2
app.go
View file

@ -337,7 +337,7 @@ func (h *Headscale) httpAuthenticationMiddleware(next http.Handler) http.Handler
Str("client_address", r.RemoteAddr).
Msg("HTTP authentication invoked")
authHeader := r.Header.Get("X-Session-Token")
authHeader := r.Header.Get("authorization")
if !strings.HasPrefix(authHeader, AuthPrefix) {
log.Error().