Revert "Disable Bugsnag through VPNs (ad blockers)"

This reverts commit cb3bb8d289.
This commit is contained in:
M66B 2021-05-15 22:16:31 +02:00
parent 3270faf44a
commit 7c0b5a505b
1 changed files with 1 additions and 3 deletions

View File

@ -377,9 +377,7 @@ public class Log {
@Override
public boolean onSession(@NonNull Session session) {
// opt-in
boolean crash_reports = prefs.getBoolean("crash_reports", false);
boolean vpn = ConnectionHelper.vpnActive(context);
return (crash_reports && !vpn);
return prefs.getBoolean("crash_reports", false);
}
});