Skip to content

Commit

Permalink
Correct Account.json Path
Browse files Browse the repository at this point in the history
  • Loading branch information
CADIndie committed Apr 10, 2024
1 parent 004ee76 commit 0522ead
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/main/java/pojlib/account/MinecraftAccount.java
Original file line number Diff line number Diff line change
Expand Up @@ -36,7 +36,7 @@ public static MinecraftAccount login(String gameDir, String[] response) throws I
}

public static boolean logout(Activity activity) {
File accountFile = new File(activity.getFilesDir() + "/account.json");
File accountFile = new File(activity.getFilesDir() + "/accounts/account.json");
return accountFile.delete();
}

Expand Down

0 comments on commit 0522ead

Please sign in to comment.