Skip to content

Commit

Permalink
[refactor] 사용자 프로필 사진으로 변경
Browse files Browse the repository at this point in the history
  • Loading branch information
isprogrammingfun committed May 24, 2023
1 parent 4331d41 commit fb049e2
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@ public static CommentInfoResponse mapToCommentInfoResponse(Comment comment, User
.commentId(comment.getId())
.description(comment.getDescription())
.writer(writer.getNickname())
.writerProfileImageUrl(writer.getMypet().getPetImageUrl())
.writerProfileImageUrl(writer.getProfileImageUrl())
.deleted(comment.isDeleted())
.changeable(Objects.equals(writer.getId(), accessUser.getId()))
.build();
Expand Down

0 comments on commit fb049e2

Please sign in to comment.