Skip to content

Commit

Permalink
feat: 게시글 수정 시 컨트롤러 계층에서도 이미지 null 확인 추가
Browse files Browse the repository at this point in the history
- 컨트롤러 계층에서도 변경된 이미지 정보가 null인지 확인하는 부분 추가
  • Loading branch information
yeonjae02 committed Jul 31, 2024
1 parent 7d2fb04 commit 600e74b
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -270,7 +270,7 @@ public ResponseEntity<?> updatePost(@PathVariable Long postId,

postUpdateDto.validate(); // 제목, 본문, 해시태그 검증

if (!postImages.isEmpty() && postImages.size() > 3) { // 이미지 변경이 있는 경우
if (postImages != null && !postImages.isEmpty() && postImages.size() > 3) { // 이미지 변경이 있는 경우
return ResponseEntity.status(HttpStatus.BAD_REQUEST).body("이미지는 최대 3장까지 업로드 가능합니다.");
}

Expand Down

0 comments on commit 600e74b

Please sign in to comment.