Skip to content

Commit

Permalink
[fix] urlToKey null 처리 로직 추가 (#166)
Browse files Browse the repository at this point in the history
  • Loading branch information
wjdtkdgns authored Sep 11, 2023
1 parent a48fc0e commit e6fa106
Showing 1 changed file with 3 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -29,6 +29,9 @@ public static String toAssetUrl(String key) {
}

public static String convertUrlToKey(String url) {
if (url == null) {
return "";
}
if (url.equals("")) {
return "";
}
Expand Down

0 comments on commit e6fa106

Please sign in to comment.