Skip to content

Commit

Permalink
feat: Fix GameReport Verify
Browse files Browse the repository at this point in the history
  • Loading branch information
jiyeoon00 committed Jul 20, 2023
1 parent 1978f35 commit 824a3f0
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/com/universe/uni/service/GameService.java
Original file line number Diff line number Diff line change
Expand Up @@ -236,7 +236,7 @@ public GameReportResponseDto getGameReportIfGameIsOngoing(Long roundGameId) {
User user = userUtil.getCurrentUser();
RoundGame roundGame = getRoundGameById(roundGameId);

verifyIsOngoingGame(roundGame);
//verifyIsOngoingGame(roundGame);
RoundMission myRoundMission = getRoundMissionByRoundGameAndUser(roundGame, user);

return GameReportResponseDto.of(myRoundMission);
Expand Down

0 comments on commit 824a3f0

Please sign in to comment.