Skip to content

Commit

Permalink
fix: 모든 피드가 좋아요 표시되는 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Curry4182 committed Apr 30, 2024
1 parent 78cc887 commit bad373f
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -118,7 +118,7 @@ public List<FeedLikeInfo> getFeedLikeInfos(

private Predicate eqLoginMemberIdWithFeedLikes(final Long loginMemberId) {
if (loginMemberId == null) {
return null;
return Expressions.FALSE;
}

return feedLike.memberId.eq(loginMemberId);
Expand Down

0 comments on commit bad373f

Please sign in to comment.