Skip to content

Commit

Permalink
Merge pull request #82 from HyeJiJUN11/feature/81-friendDiary
Browse files Browse the repository at this point in the history
bug: ์นœ๊ตฌ ์ผ๊ธฐ ์กฐํšŒ ์•ˆ๋˜๋Š” ์˜ค๋ฅ˜ ์ˆ˜์ •
  • Loading branch information
peeerr authored Nov 4, 2024
2 parents 9050df3 + 103b81a commit d6e5ad3
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ public static Specification<Diary> filterDiaries(
builder.between(root.get("createAt"), from, until.plusDays(1)));
}

predicate = builder.and(predicate, builder.isTrue(root.get("public")));
predicate = builder.and(predicate, builder.isTrue(root.get("isPublic")));

return predicate;
};
Expand Down

0 comments on commit d6e5ad3

Please sign in to comment.