Skip to content

Commit

Permalink
[BE] fix: 좋아요 취소도 좋아요를 누르지 않은 것으로 설정 (#808)
Browse files Browse the repository at this point in the history
  • Loading branch information
70825 authored Oct 19, 2023
1 parent c4bb04f commit 800f563
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@ private static Boolean checkingFavorite(final Boolean favorite) {
if (Objects.isNull(favorite)) {
return Boolean.FALSE;
}
return Boolean.TRUE;
return favorite;
}

public Long getId() {
Expand Down

0 comments on commit 800f563

Please sign in to comment.