Skip to content

Commit

Permalink
[MODIFY] getCommentPage debug
Browse files Browse the repository at this point in the history
- getCommentPage debug
  • Loading branch information
himodu committed May 20, 2024
1 parent 0486533 commit be9c2f2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ public List<Comment> getCommentPage(int boothNum, String categori, int page, Str
List<CommentEntity> comments;
List<Comment> result = new ArrayList<>();

int offset = (page-1) * 5;
int offset = (page-1) * 20;

comments = commentRepository.findAllOrderByIdDESC(booth.getId(), 20, offset);

Expand Down

0 comments on commit be9c2f2

Please sign in to comment.