Skip to content

Commit

Permalink
fix: 가상 계좌 취소 웹훅 오류 수정 (#247)
Browse files Browse the repository at this point in the history
  • Loading branch information
byulcode committed Jan 13, 2024
1 parent 652cfdc commit fec4735
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -103,6 +103,7 @@ public void confirmVirtualAccountIncome(ConfirmVirtualIncomeRequest request) {
booking.updateStatus(BookingStatus.PAYMENT_COMPLETED);
}
case WAITING_FOR_DEPOSIT -> throw new BookingException(BookingErrorCode.ACCOUNT_TRANSFER_ERROR);
case CANCELED -> log.info("Virtual Amount Payment Canceled");
default -> throw new BookingException(BookingErrorCode.INTERNAL_SERVER_ERROR);
}
}
Expand Down

0 comments on commit fec4735

Please sign in to comment.