A-0.2 - Datenbankverbindung #35

Merged
edraft merged 13 commits from 0.2 into Alpha 2021-12-01 17:57:52 +01:00
2 changed files with 2 additions and 2 deletions
Showing only changes of commit 9c7b00e259 - Show all commits

View File

@ -46,7 +46,7 @@ class ServerRepositoryService(ServerRepositoryABC):
def find_server_by_discord_id(self, discord_id: int) -> Optional[Server]:
self._logger.trace(__name__, f'Send SQL command: {Server.get_select_by_discord_id_string(discord_id)}')
result = self._context.select(Server.get_select_by_discord_id_string(discord_id))
if len(result) == 0 or result is None:
if result is None or len(result) == 0:
return None
return Server(

View File

@ -55,7 +55,7 @@ class UserRepositoryService(UserRepositoryABC):
def find_user_by_discord_id(self, discord_id: int) -> Optional[User]:
self._logger.trace(__name__, f'Send SQL command: {User.get_select_by_discord_id_string(discord_id)}')
result = self._context.select(User.get_select_by_discord_id_string(discord_id))
if len(result) == 0 or result is None:
if result is None or len(result) == 0:
return None
return User(