Improved find
This commit is contained in:
parent
7bcd632b59
commit
1a5767edf0
@ -46,7 +46,7 @@ class ServerRepositoryService(ServerRepositoryABC):
|
|||||||
def find_server_by_discord_id(self, discord_id: int) -> Optional[Server]:
|
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)}')
|
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))
|
result = self._context.select(Server.get_select_by_discord_id_string(discord_id))
|
||||||
if len(result) == 0:
|
if len(result) == 0 or result is None:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
return Server(
|
return Server(
|
||||||
|
@ -55,7 +55,7 @@ class UserRepositoryService(UserRepositoryABC):
|
|||||||
def find_user_by_discord_id(self, discord_id: int) -> Optional[User]:
|
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)}')
|
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))
|
result = self._context.select(User.get_select_by_discord_id_string(discord_id))
|
||||||
if len(result) == 0:
|
if len(result) == 0 or result is None:
|
||||||
return None
|
return None
|
||||||
|
|
||||||
return User(
|
return User(
|
||||||
|
Reference in New Issue
Block a user