Fixed auth user confirmed check #130

This commit is contained in:
Sven Heidemann 2023-02-18 12:49:14 +01:00
parent 43b6df2ba3
commit 38417bd712

View File

@ -28,7 +28,7 @@ class AuthUserRepositoryService(AuthUserRepositoryABC):
@staticmethod
def _get_value_from_result(value: any) -> Optional[any]:
if isinstance(value, str) and "NULL" in value:
if isinstance(value, str) and "null" in value:
return None
return value