Skip to content

Commit

Permalink
[FIX] cursorId에 대해 더 큰 값을 가져오도록 오류 수정 (eq -> gt)
Browse files Browse the repository at this point in the history
  • Loading branch information
JIN-076 committed Feb 18, 2024
1 parent 61dfc15 commit 248f26e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ private BooleanExpression projectStatusEq(ProjectStatus projectStatus) {
}

private BooleanExpression cursorIdEq(Long cursorId) {
return cursorId != null ? project.id.eq(cursorId) : null;
return cursorId != null ? project.id.gt(cursorId) : null;
}

private boolean checkLastPage(List<Project> projects, Pageable pageable) {
Expand Down

0 comments on commit 248f26e

Please sign in to comment.