Skip to content

Commit

Permalink
[api-server-v1] fix: 페이지 수정 반영 오류 반영
Browse files Browse the repository at this point in the history
  • Loading branch information
gdtknight committed Oct 5, 2023
1 parent 4983380 commit a9b78a4
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -286,7 +286,7 @@ public SharePageDetailResponseDTO modify(UUID pageId, SharePageModifyDTO sharePa
if (sharePageModifyDTO.title() != null) currentPage.setTitle(sharePageModifyDTO.title());

if (sharePageModifyDTO.description() != null)
currentPage.setTitle(sharePageModifyDTO.description());
currentPage.setDescription(sharePageModifyDTO.description());

if (sharePageModifyDTO.profileImage() != null) {
s3StorageService.delete(currentPage.getProfileImageLink());
Expand Down

0 comments on commit a9b78a4

Please sign in to comment.