- Fixed inproper deletion of accounts

This commit is contained in:
SerpentSpirale
2021-01-08 21:52:39 +01:00
parent c791a2dd8e
commit 2f482eceab

View File

@@ -38,7 +38,7 @@ public class InvalidateTokenTask extends AsyncTask<String, Void, Throwable> {
if (result != null) {
Tools.showError(ctx, result);
}
new File(path).delete();
boolean test = new File(Tools.DIR_ACCOUNT_NEW + "/" + path + ".json").delete();
}
}