Skip to content

Commit

Permalink
Add more helpful error message for keychain error on macOS (#1725)
Browse files Browse the repository at this point in the history
Fixes #1724
  • Loading branch information
nilsreichardt authored Sep 8, 2024
1 parent 28b529c commit 1186faa
Showing 1 changed file with 4 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -88,6 +88,10 @@ String? handleErrorMessage(String? error, StackTrace s) {
return "Es gab einen Netzwerkfehler, weil keine stabile Internetverbindung besteht.";
} else if (error.contains("weak-password")) {
return "Dieses Passwort ist zu schwach. Bitte wähle eine stärkeres Passwort.";
} else if (error
.contains("sign_in_failed, com.google.GlDSignIn, keychain error")) {
// See https://github.com/SharezoneApp/sharezone-app/issues/1724
return "Es gab einen Fehler beim Anmelden. Um diesen zu beheben, wähle die Option 'Immer erlauben' bei der Passworteingabe bei dem Dialog für den macOS-Schlüsselbund (Keychain) aus.";
}

recordError(error, s);
Expand Down

0 comments on commit 1186faa

Please sign in to comment.