fix: jwt profile request in op

This commit is contained in:
adlerhurst 2020-09-16 14:12:41 +02:00
parent d97df8a9b2
commit fd3daa2335
8 changed files with 224 additions and 16 deletions

View file

@ -105,7 +105,7 @@ func (i *Userinfo) UnmmarshalJSON(data []byte) error {
if err := json.Unmarshal(data, i); err != nil {
return err
}
return json.Unmarshal(data, i.claims)
return json.Unmarshal(data, &i.claims)
}
type jsonUserinfo struct {