Skip to content

Commit

Permalink
fix: image 저장 시, 반환 값 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
yangchef1 committed May 16, 2024
1 parent d8cc681 commit 597c06e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@ public ImagePathResponse upload(MultipartFile file) {

try {
file.transferTo(saveFile);
return new ImagePathResponse(BASE_PATH + uuid + fileExtension);
return new ImagePathResponse(uuid + fileExtension);
} catch (IOException e) {
throw new RuntimeException(e);
}
Expand Down

0 comments on commit 597c06e

Please sign in to comment.