1
0
Fork 0

For #3508: "Send crash report" checkbox is ignored (#3512)

master
Colin Lee 2019-06-18 16:38:29 -07:00 committed by Stefan Arentz
parent 521312c6f8
commit 0135424883
1 changed files with 1 additions and 1 deletions

View File

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