Fixed server repo

This commit is contained in:
Sven Heidemann 2021-12-08 17:59:22 +01:00
parent c6e52039cb
commit adc74d6288

View File

@ -37,7 +37,7 @@ class ServerRepositoryService(ServerRepositoryABC):
def get_server_by_discord_id(self, discord_id: int) -> Server: def get_server_by_discord_id(self, discord_id: int) -> 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))[0]
return Server( return Server(
result[1], result[1],
id=result[0] id=result[0]