Skip to content

Commit

Permalink
[fix] 상대방의 easyMode 보내주기 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
minwoo0419 committed Aug 26, 2024
1 parent 24f693b commit afbf860
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public GetLastQuestionDto findLastQuestion(
throw new NotFoundException(NotFoundErrorCode.QUESTION_NOT_FOUND);
}
boolean isPenalty = checkPenalty(question);
return GetLastQuestionDto.of(question, isPenalty, profile.isEasyMode());
return GetLastQuestionDto.of(question, isPenalty, oppoProfile.isEasyMode());
}

private boolean checkPenalty(final Question question) {
Expand Down

0 comments on commit afbf860

Please sign in to comment.