Bug 1303067 - Enable unsubmitted crash notification for more users. r?felipe draft
authorMike Conley <mconley@mozilla.com>
Tue, 25 Oct 2016 13:57:44 -0400
changeset 429315 6f307263bb848c511494f6a8b07ad9c0ea9d02c0
parent 429299 bfcf9a6b00e24d29204060f1fe6571fd99f43969
child 429323 3f613f21a2f2b88cad7401b06a67ab7ba4e666be
push id33538
push usermconley@mozilla.com
push dateTue, 25 Oct 2016 17:58:10 +0000
reviewersfelipe
bugs1303067
milestone52.0a1
Bug 1303067 - Enable unsubmitted crash notification for more users. r?felipe MozReview-Commit-ID: 8pK5DKBcrX3
browser/app/profile/firefox.js
--- a/browser/app/profile/firefox.js
+++ b/browser/app/profile/firefox.js
@@ -1538,20 +1538,20 @@ pref("print.use_simplify_page", true);
 
 // Space separated list of URLS that are allowed to send objects (instead of
 // only strings) through webchannels. This list is duplicated in mobile/android/app/mobile.js
 pref("webchannel.allowObject.urlWhitelist", "https://accounts.firefox.com https://content.cdn.mozilla.net https://input.mozilla.org https://support.mozilla.org https://install.mozilla.org");
 
 // Whether or not the browser should scan for unsubmitted
 // crash reports, and then show a notification for submitting
 // those reports.
-#ifdef RELEASE_OR_BETA
+#ifdef EARLY_BETA_OR_EARLIER
+pref("browser.crashReports.unsubmittedCheck.enabled", true);
+#else
 pref("browser.crashReports.unsubmittedCheck.enabled", false);
-#else
-pref("browser.crashReports.unsubmittedCheck.enabled", true);
 #endif
 
 // chancesUntilSuppress is how many times we'll show the unsubmitted
 // crash report notification across different days and shutdown
 // without a user choice before we suppress the notification for
 // some number of days.
 pref("browser.crashReports.unsubmittedCheck.chancesUntilSuppress", 4);
 pref("browser.crashReports.unsubmittedCheck.autoSubmit", false);