1
0
Fork 0
mirror of https://github.com/M66B/FairEmail.git synced 2025-02-24 23:12:55 +00:00

Delete invalid classifier data files

This commit is contained in:
M66B 2021-01-31 20:20:07 +01:00
parent 70a2af170f
commit eb0be3f813

View file

@ -396,7 +396,12 @@ public class MessageClassifier {
File file = getFile(context);
if (file.exists()) {
String json = Helper.readText(file);
fromJson(new JSONObject(json));
try {
fromJson(new JSONObject(json));
} catch (JSONException ex) {
Log.e(ex);
file.delete();
}
}
loaded = true;