mirror of https://github.com/M66B/FairEmail.git
Filter invalid mark
This commit is contained in:
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…
Reference in New Issue