Revert "Guard Bugsnag delivery"

This reverts commit d69d0097ef.
This commit is contained in:
M66B
2025-04-22 09:58:42 +02:00
parent 4c3914d9af
commit 70dd34d89e
2 changed files with 1 additions and 6 deletions

View File

@@ -314,7 +314,6 @@ public class Log {
static void setCrashReporting(boolean enabled) {
try {
System.setProperty("com.bugsnag.android.enabled", Boolean.toString(enabled));
if (enabled)
Bugsnag.resumeSession();
else
@@ -590,10 +589,8 @@ public class Log {
Log.i("uuid=" + uuid);
client.setUser(uuid, null, null);
if (prefs.getBoolean("crash_reports", false) || Log.isTestRelease()) {
System.setProperty("com.bugsnag.android.enabled", Boolean.toString(true));
if (prefs.getBoolean("crash_reports", false) || Log.isTestRelease())
Bugsnag.startSession();
}
} catch (Throwable ex) {
Log.e(ex);
/*