Skip to content

Commit

Permalink
Fix empty Folders being created
Browse files Browse the repository at this point in the history
  • Loading branch information
ZockerAxel committed Dec 6, 2021
1 parent 7cd6d38 commit d69106e
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -680,7 +680,7 @@ private String getSavePath(UUID uuid) {

private File getSaveFile(UUID uuid) {
File file = new File(getSavePath(uuid));
file.mkdirs();
file.getParentFile().mkdirs();
return file;
}

Expand Down

0 comments on commit d69106e

Please sign in to comment.