BUGFIX: claims, use value, not field name
This commit is contained in:
parent
03fbde5af3
commit
f3672c9a0c
1 changed files with 1 additions and 1 deletions
2
jwt.go
2
jwt.go
|
@ -219,7 +219,7 @@ func (m *Middleware) GenerateToken() http.Handler {
|
|||
}
|
||||
|
||||
// Generate claims for user
|
||||
claims, err := m.claims(m.identityField)
|
||||
claims, err := m.claims(b[m.identityField])
|
||||
if err != nil {
|
||||
return &jwtError{
|
||||
status: http.StatusInternalServerError,
|
||||
|
|
Loading…
Add table
Reference in a new issue