Delete invalid classifier data files

pull/194/head
M66B 4 years ago
parent 70a2af170f
commit eb0be3f813

@ -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;

Loading…
Cancel
Save