Fixed error reporting rate limit

This commit is contained in:
M66B
2019-09-12 18:32:15 +02:00
parent fce2d3c1db
commit 0b38787d1f

View File

@@ -202,16 +202,11 @@ public class Log {
config.beforeSend(new BeforeSend() {
@Override
public boolean run(@NonNull Report report) {
boolean crash_reports = prefs.getBoolean("crash_reports", false); // opt-in
// opt-in
boolean crash_reports = prefs.getBoolean("crash_reports", false);
if (!crash_reports)
return false;
int count = prefs.getInt("crash_report_count", 0);
count++;
prefs.edit().putInt("crash_report_count", count).apply();
if (count > MAX_CRASH_REPORTS)
return false;
Throwable ex = report.getError().getException();
if (ex instanceof MessagingException &&
@@ -241,6 +236,13 @@ public class Log {
ex.getMessage().startsWith("https://autoconfig.thunderbird.net/")))
return false;
// Rate limit
int count = prefs.getInt("crash_report_count", 0);
count++;
prefs.edit().putInt("crash_report_count", count).apply();
if (count > MAX_CRASH_REPORTS)
return false;
return true;
}
});