Skip to content

Commit

Permalink
change WurstClient to .Wurst encryption
Browse files Browse the repository at this point in the history
  • Loading branch information
DutchO7 committed Sep 14, 2023
1 parent 9249fda commit cfa8b4a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/net/wurstclient/WurstClient.java
Original file line number Diff line number Diff line change
Expand Up @@ -154,7 +154,7 @@ public void initialize()
if((xdg_data_home = System.getenv("XDG_DATA_HOME")) != null
&& !xdg_data_home.isEmpty())
{
encFolder = Paths.get(xdg_data_home, "WurstClient").normalize();
encFolder = Paths.get(xdg_data_home, ".Wurst encryption").normalize();
if(!Files.exists(encFolder) && Files.isDirectory(oldEncFolder))
Encryption.migrateEncryptionFolder(oldEncFolder, encFolder);
}else
Expand Down

0 comments on commit cfa8b4a

Please sign in to comment.