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 kkjsw17 committed Aug 23, 2024
1 parent fa0ec78 commit 8c4942f
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 8c4942f

Please sign in to comment.