Unbekannte Benutzer führen zu einem Fehler mit tracking id statt einer fehlermeldung #247 #249

Merged
edraft merged 5 commits from #247 into 1.0.0 2023-03-11 01:17:15 +01:00
Showing only changes of commit 16ef29999c - Show all commits

View File

@ -80,6 +80,9 @@ class AuthService(AuthServiceABC):
@staticmethod
def _is_email_valid(email: str) -> bool:
if email is None:
raise False
if re.fullmatch(_email_regex, email) is not None:
return True