mirror of
https://github.com/passbolt/go-passbolt.git
synced 2025-05-10 01:48:22 +00:00
fix mfa challange detection
for servers where the default language is not English
This commit is contained in:
parent
69221b3a24
commit
1b30521b5b
1 changed files with 1 additions and 1 deletions
|
@ -62,7 +62,7 @@ start:
|
||||||
if res.Header.Status == "success" {
|
if res.Header.Status == "success" {
|
||||||
return r, &res, nil
|
return r, &res, nil
|
||||||
} else if res.Header.Status == "error" {
|
} else if res.Header.Status == "error" {
|
||||||
if res.Header.Code == 403 && res.Header.Message == "MFA authentication is required." {
|
if res.Header.Code == 403 && res.Header.URL == "/mfa/verify/error.json" {
|
||||||
if !firstTime {
|
if !firstTime {
|
||||||
// if we are here this probably means that the MFA callback is broken, to prevent a infinit loop lets error here
|
// if we are here this probably means that the MFA callback is broken, to prevent a infinit loop lets error here
|
||||||
return r, &res, fmt.Errorf("Got MFA challenge twice in a row, is your MFA Callback broken? Bailing to prevent loop...:")
|
return r, &res, fmt.Errorf("Got MFA challenge twice in a row, is your MFA Callback broken? Bailing to prevent loop...:")
|
||||||
|
|
Loading…
Add table
Reference in a new issue