From 369fd8075467c5a2057736e71b800b5ef7d81a73 Mon Sep 17 00:00:00 2001 From: proffapt Date: Mon, 17 Jun 2024 14:03:11 +0530 Subject: [PATCH] fix(backned): renamed jwt -> heimdall --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 0dcd50a..e247191 100644 --- a/main.go +++ b/main.go @@ -296,7 +296,7 @@ func handleVerifyOtp(res http.ResponseWriter, req *http.Request) { } func handleValidateJwt(res http.ResponseWriter, req *http.Request) { - cookie, err := req.Cookie("jwt") + cookie, err := req.Cookie("heimdall") if err != nil { http.Error(res, "No JWT session token found.", http.StatusUnauthorized) return