Skip to content

Commit

Permalink
fix: 코드 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
ymkim97 committed Nov 27, 2023
1 parent cd90732 commit ab2062b
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -87,9 +87,9 @@ public void certifyRoom(CertifiedMemberInfo certifyInfo) {
certifyRoomIfAvailable(room.getId(), date, room, bugType, room.getLevel());
return;
}
member.getBug().increaseBug(bugType, room.getLevel());
}

member.getBug().increase(bugType, room.getLevel());
}

public boolean existsMemberCertification(Long memberId, Long roomId, LocalDate date) {
return dailyMemberCertificationRepository.existsByMemberIdAndRoomIdAndCreatedAtBetween(memberId, roomId,
Expand Down

0 comments on commit ab2062b

Please sign in to comment.