Skip to content

Commit

Permalink
fix mfa challange detection
Browse files Browse the repository at this point in the history
for servers where the default language is not English
  • Loading branch information
speatzle committed Apr 7, 2022
1 parent 69221b3 commit 1b30521
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion api/api.go
Original file line number Diff line number Diff line change
Expand Up @@ -62,7 +62,7 @@ start:
if res.Header.Status == "success" {
return r, &res, nil
} 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 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...:")
Expand Down

0 comments on commit 1b30521

Please sign in to comment.