From b83b633dd603daa050c45d0520f04fad4e3f24b5 Mon Sep 17 00:00:00 2001 From: Peter Stuifzand Date: Tue, 2 Feb 2021 22:09:09 +0100 Subject: [PATCH] Check if authToken is set --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index b1d72ca..7a1a5a6 100644 --- a/main.go +++ b/main.go @@ -1074,7 +1074,7 @@ func main() { func wrapAuth(handler http.HandlerFunc) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { auth := r.Header.Get("Authorization") - if auth == "" || auth == "Token "+authToken { + if auth == "" || (authToken != "" && auth == "Token "+authToken) { r = r.WithContext(context.WithValue(r.Context(), authKey, auth != "")) // auth == "", require cookie in handler handler.ServeHTTP(w, r)