Skip to content

Commit

Permalink
HOTFIX
Browse files Browse the repository at this point in the history
  • Loading branch information
MinhoJJang committed Mar 23, 2024
1 parent 8091ec0 commit d803b8e
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,8 @@ public void saveFolder(Long userId, String folderName, FolderColor folderColor){
}
if(folderName == null) {
log.error("[FolderService] folderName is null");
throw new IllegalArgumentException("folderName is null");
folderName = "null folder";
// throw new IllegalArgumentException("folderName is null");
}
if(folderColor == null) {
log.error("[FolderService] folderColor is null");
Expand Down

0 comments on commit d803b8e

Please sign in to comment.