Skip to content

Commit

Permalink
Merge pull request #13 from LikeLion-KNU/HOTFIX
Browse files Browse the repository at this point in the history
[MODIFY] getCommentPage debug
  • Loading branch information
himodu authored May 20, 2024
2 parents 7341f92 + be9c2f2 commit e554586
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 e554586

Please sign in to comment.