removed unnecessary struct pointer
This commit is contained in:
parent
b328827705
commit
a3d26a73c3
|
@ -204,7 +204,7 @@ func (p *Apple) fetchJWK(kid string) (*jwk, error) {
|
||||||
)
|
)
|
||||||
}
|
}
|
||||||
|
|
||||||
jwks := &struct {
|
jwks := struct {
|
||||||
Keys []*jwk
|
Keys []*jwk
|
||||||
}{}
|
}{}
|
||||||
if err := json.Unmarshal(rawBody, &jwks); err != nil {
|
if err := json.Unmarshal(rawBody, &jwks); err != nil {
|
||||||
|
|
Loading…
Reference in New Issue