Skip to content

Commit

Permalink
[hotfix] fix: 프로필 사진 없앴을 때 기본 프사로 설정되도록 수정
Browse files Browse the repository at this point in the history
  • Loading branch information
elive7 committed Jan 13, 2025
1 parent 36de95b commit 6b38b44
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/org/recordy/server/user/domain/User.java
Original file line number Diff line number Diff line change
Expand Up @@ -72,7 +72,7 @@ public void update(UserUpdate update) {
profileImageUrl = update.profileImageUrl();
}
else {
profileImageUrl = null;
profileImageUrl = PROFILE_IMAGE_URL;
}
}

Expand Down

0 comments on commit 6b38b44

Please sign in to comment.