2
0
mirror of https://github.com/fork-maintainers/iceraven-browser synced 2024-11-15 18:12:54 +00:00
This commit is contained in:
Colin Lee 2019-06-18 16:38:29 -07:00 committed by Stefan Arentz
parent 717d7f0424
commit 4711606eb0

View File

@ -68,7 +68,7 @@ class CrashReporterFragment : Fragment() {
private fun submitReportIfNecessary(crash: Crash) { private fun submitReportIfNecessary(crash: Crash) {
var didSubmitCrashReport = false var didSubmitCrashReport = false
if (Settings.getInstance(context!!).isCrashReportingEnabled) { if (Settings.getInstance(context!!).isCrashReportingEnabled && send_crash_checkbox.isChecked) {
requireComponents.analytics.crashReporter.submitReport(crash) requireComponents.analytics.crashReporter.submitReport(crash)
didSubmitCrashReport = true didSubmitCrashReport = true
} }