Skip to content

Commit

Permalink
수정
Browse files Browse the repository at this point in the history
  • Loading branch information
Johyunik committed Nov 30, 2023
1 parent 1d35302 commit 4044c76
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -177,7 +177,7 @@ public void patchBoard(int boardId, String boardJson, MultipartFile[] images, St
.hashTag(boardUpdateDTO.getHashTag())
.build();

BoardEntity savedBoard = boardService.insertBoard(boardEntity);
BoardEntity savedBoard = boardRepository.save(boardEntity);

for (MultipartFile image : images) {
String imageUrl = imageService.saveImage(image);
Expand Down

0 comments on commit 4044c76

Please sign in to comment.