Skip to content

Commit

Permalink
[Hotfix] refactor media util method(validate remove img in s3)
Browse files Browse the repository at this point in the history
  • Loading branch information
Han-Jeong committed Jun 5, 2024
1 parent 4db4bea commit 232e279
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -98,7 +98,7 @@ public static String getDefaultMemberProfileImgUrl() {
}

public static boolean validateRemoveImgInS3(String previous, String current) {
if (previous == null && current != null) {
if (previous == null) {
return false;
}
return !previous.equals(current);
Expand Down

0 comments on commit 232e279

Please sign in to comment.