Skip to content

Commit

Permalink
[Release]: 세션 사진 순서 변경 기능 오류 수정
Browse files Browse the repository at this point in the history
[Release]: 세션 사진 순서 변경 기능 오류 수정
  • Loading branch information
gikhoon authored Jul 29, 2024
2 parents 91b8127 + 061235d commit 82a5db9
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -174,7 +174,7 @@ public void updateSessionImageOrder(UpdateSessionImageOrderRequest request) {
throw new AppException(ErrorCode.SESSION_IMAGE_COUNT_MISMATCH);
}

if (isValidOrderRange(orderList)) {
if (!isValidOrderRange(orderList)) {
throw new AppException(ErrorCode.SESSION_ORDER_INVALID);
}

Expand Down

0 comments on commit 82a5db9

Please sign in to comment.