Skip to content

Commit

Permalink
Feat/alarm sse (#87)
Browse files Browse the repository at this point in the history
* Fix: 오류 수정

* Fix: 구독 목록 불러오기 수정
  • Loading branch information
flowerdonk authored Aug 9, 2023
1 parent 2855685 commit 1fddfbe
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -51,7 +51,7 @@ public SubscribeResponseList getSubscribeList(String userId) {
} else { // 소비자 일 경우
List<Subscribe> subscribeList = subscribeRepository.findAllByConsumer(member);
for (Subscribe subscribe : subscribeList) {
memberList.add(subscribe.getConsumer());
memberList.add(subscribe.getSeller());
}
}
return new SubscribeResponseList(memberList);
Expand Down

0 comments on commit 1fddfbe

Please sign in to comment.