fix: missing returning the claim

This commit is contained in:
Derrick Hammer 2024-02-17 20:16:19 -05:00
parent 7ec03524ed
commit 484b9ac583
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 1 additions and 1 deletions

View File

@ -86,5 +86,5 @@ func JWTVerifyToken(token string, domain string, privateKey ed25519.PrivateKey,
err = verifyFunc(claim)
return nil, err
return claim, err
}