Skip to content

Commit

Permalink
Merge pull request #90 from Modagbul/fix/auth
Browse files Browse the repository at this point in the history
fix: 게시글 댓글 삭제 여부 수정
  • Loading branch information
minsu20 authored Nov 26, 2023
2 parents ed4d72b + 90109d8 commit bf37371
Showing 1 changed file with 5 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -24,8 +24,10 @@ public class CommentBlocks {

private Boolean writerIsDeleted;

public void deleteMember(){
this.writerNickName="(알 수 없음)";
this.writerProfileImage="undef";
public void deleteMember() {
if (Boolean.TRUE.equals(writerIsDeleted)) {
this.writerNickName = "(알 수 없음)";
this.writerProfileImage = "undef";
}
}
}

0 comments on commit bf37371

Please sign in to comment.