fix: update error handling
This commit is contained in:
parent
d74d29e2c5
commit
e1709a7910
|
@ -376,7 +376,7 @@ func (h *HttpHandler) AccountLoginChallenge(jc jape.Context) {
|
||||||
decodedKey, err := base64.RawURLEncoding.DecodeString(pubkey)
|
decodedKey, err := base64.RawURLEncoding.DecodeString(pubkey)
|
||||||
|
|
||||||
if err != nil {
|
if err != nil {
|
||||||
errored(err)
|
errored(errAccountGenerateChallengeErr)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
@ -391,7 +391,7 @@ func (h *HttpHandler) AccountLoginChallenge(jc jape.Context) {
|
||||||
})
|
})
|
||||||
|
|
||||||
if result.Error != nil {
|
if result.Error != nil {
|
||||||
errored(err)
|
errored(result.Error)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue