Skip to content

Commit

Permalink
fix: 검증 로직 일부 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
mikekks committed Nov 23, 2024
1 parent a3ea845 commit b0e77fd
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 b0e77fd

Please sign in to comment.