Skip to content

Commit

Permalink
0351: crashReports enforce extra pref at default
Browse files Browse the repository at this point in the history
enforces default false (future proofing, because sh*t happens), plus added the FF version numbers.
  • Loading branch information
Thorin-Oakenpants committed Apr 15, 2017
1 parent 551427f commit bc70023
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion user.js
Original file line number Diff line number Diff line change
Expand Up @@ -172,7 +172,8 @@ user_pref("network.allow-experiments", false);
user_pref("breakpad.reportURL", "");
/* 0351: disable sending of crash reports (FF44+) ***/
user_pref("browser.tabs.crashReporting.sendReport", false);
user_pref("browser.crashReports.unsubmittedCheck.enabled", false);
user_pref("browser.crashReports.unsubmittedCheck.enabled", false); // (FF51+)
user_pref("browser.crashReports.unsubmittedCheck.autoSubmit", false); // (FF51+)
/* 0360: disable new tab tile ads & preload & marketing junk ***/
user_pref("browser.newtab.preload", false);
user_pref("browser.newtabpage.directory.ping", "data:text/plain,");
Expand Down

0 comments on commit bc70023

Please sign in to comment.