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;