Skip to content

Commit

Permalink
fix: cursorId가 'null'인 경우 500에러가 뜨는 버그 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Curry4182 committed Apr 12, 2024
1 parent 658a45a commit 8014f27
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -193,7 +193,7 @@ private BooleanExpression cursorIdCondition(
final String cursorId,
final ItemSortCondition itemSortCondition
) {
if (cursorId == null) {
if (cursorId == null || cursorId.equals("null")) {
return null;
}

Expand Down

0 comments on commit 8014f27

Please sign in to comment.