Skip to content

Commit

Permalink
fix: 검증 로직 일부 수정 (#496)
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks authored Nov 23, 2024
1 parent a3ea845 commit 2398c9b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -543,7 +543,7 @@ private void validateApplyPeriod(Meeting meeting) {
}

private void validateUserActivities(User user) {
if (user.getActivities().isEmpty()) {
if (user.getActivities() == null || user.getActivities().isEmpty()) {
throw new BadRequestException(MISSING_GENERATION_PART.getErrorCode());
}
}
Expand Down

0 comments on commit 2398c9b

Please sign in to comment.