Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add note for inactive users #1655

Merged
merged 1 commit into from
Jun 9, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -83,7 +83,7 @@ String? handleErrorMessage(String? error, StackTrace s) {
} else if (error.contains("too-many-requests")) {
return "Wir haben alle Anfragen von diesem Gerät aufgrund ungewöhnlicher Aktivitäten blockiert. Versuchen Sie es später noch einmal.";
} else if (error.contains("user-not-found")) {
return "Es wurde kein Nutzer mit dieser E-Mail Adresse gefunden...";
return "Es wurde kein Nutzer mit dieser E-Mail Adresse gefunden... Inaktive Nutzer werden nach 2 Jahren gelöscht.";
} else if (error.contains("network-request-failed")) {
return "Es gab einen Netzwerkfehler, weil keine stabile Internetverbindung besteht.";
} else if (error.contains("weak-password")) {
Expand Down
Loading