Skip to content

Commit

Permalink
fix: 코루틴 bug 해결 #446
Browse files Browse the repository at this point in the history
  • Loading branch information
LWJ0513 committed Mar 11, 2024
1 parent 1730519 commit 17cae78
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion backend/games/consumers/GameConsumer.py
Original file line number Diff line number Diff line change
Expand Up @@ -109,7 +109,7 @@ async def _process_valid_user_disconnect(self):
await self._save_game_object_by_id()
if await self._is_finished(self.game.mode) is False:
match = self._get_my_match_PingPongGame_object(self.my_match)
group_name = self._get_my_match_group_name(self.my_match)
group_name = await self._get_my_match_group_name(self.my_match)
await self._dodge(self.my_match, match, self.player1, group_name)

async def _dodge(self, my_match, result: PingPongGame, player1: bool, match_group_name):
Expand Down

0 comments on commit 17cae78

Please sign in to comment.