Skip to content

Commit 790e3dc

Browse files
committed
CLAP-403 Fix : 알림 전체 읽음 처리 에러 해결
1 parent f6c0cc1 commit 790e3dc

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

src/main/java/clap/server/adapter/outbound/persistense/repository/notification/NotificationRepository.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -25,7 +25,7 @@ Slice<NotificationEntity> findAllByReceiver_MemberIdOrderByCreatedAtDesc(
2525
@Query("SELECT n FROM NotificationEntity n " +
2626
"WHERE n.receiver.memberId = :receiverId " +
2727
"AND n.task.isDeleted = false")
28-
List<NotificationEntity> findAllByReceiver_MemberId(Long memberId);
28+
List<NotificationEntity> findAllByReceiver_MemberId(Long receiverId);
2929

3030
List<NotificationEntity> findByTask_TaskId(Long taskId);
3131

0 commit comments

Comments
 (0)