From 484b9ac58332f900a68db7c23a9f08c1c0595ef9 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Sat, 17 Feb 2024 20:16:19 -0500 Subject: [PATCH] fix: missing returning the claim --- account/jwt.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/account/jwt.go b/account/jwt.go index 217f090..ce67ed7 100644 --- a/account/jwt.go +++ b/account/jwt.go @@ -86,5 +86,5 @@ func JWTVerifyToken(token string, domain string, privateKey ed25519.PrivateKey, err = verifyFunc(claim) - return nil, err + return claim, err }