Skip to content

Commit

Permalink
Fixed initialization of application data directory
Browse files Browse the repository at this point in the history
  • Loading branch information
lfgaleota committed Mar 18, 2024
1 parent 1832732 commit 93f1533
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -89,7 +89,7 @@ public static Path getUserDataPath() {

if( Files.notExists( userDir ) ) {
try {
Files.createDirectory( userDir );
Files.createDirectories( userDir );
} catch( IOException e ) {
e.printStackTrace();
return null;
Expand Down

0 comments on commit 93f1533

Please sign in to comment.