Skip to content

Commit

Permalink
[SAMBAD-276]- 컴파일 에러 픽스 (#121)
Browse files Browse the repository at this point in the history
  • Loading branch information
LeeHanEum authored and nahyeon99 committed Aug 24, 2024
1 parent e3f3f29 commit ea251e7
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ public void ignoreHandWaving(Long userId, Long meetingId, Long handWavingId) {
}

private HandWaving getHandWavingBySenderIdAndReceiverId(Long senderMemberId, Long receiverMemberId) {
return handWavingRepository.findBySenderIdAndReceiverId(senderMemberId, receiverMemberId)
return handWavingRepository.findFirstBySenderIdAndReceiverIdOrderByIdDesc(senderMemberId, receiverMemberId)
.orElseThrow(NotFoundHandWavingException::new);
}

Expand Down

0 comments on commit ea251e7

Please sign in to comment.