Filter invalid mark

pull/164/head
M66B 5 years ago
parent 614f5253c3
commit 2a7204fdcb

@ -253,6 +253,10 @@ public class Log {
ex.getMessage().startsWith("https://autoconfig.thunderbird.net/")))
return false;
if (ex instanceof IOException &&
"Resetting to invalid mark".equals(ex.getMessage()))
return false;
// Rate limit
int count = prefs.getInt("crash_report_count", 0) + 1;
prefs.edit().putInt("crash_report_count", count).apply();

Loading…
Cancel
Save