From cb850b7e0ec2140cc6083ee1fc3b1abc9ebbccf7 Mon Sep 17 00:00:00 2001 From: Jared Hirsch Date: Tue, 23 Jan 2018 18:58:39 -0800 Subject: [PATCH] Bug 1432694 - Add a default value for the Screenshots upload-disabled pref; r=ianbicking MozReview-Commit-ID: 2ZpKfqlwFmb --HG-- extra : rebase_source : 8a5ecdc8f3273f472f3c740fe5ebae393c2ec780 --- browser/app/profile/firefox.js | 3 +++ 1 file changed, 3 insertions(+) diff --git a/browser/app/profile/firefox.js b/browser/app/profile/firefox.js index d73b1ac2a293..6c1a2a6c5d31 100644 --- a/browser/app/profile/firefox.js +++ b/browser/app/profile/firefox.js @@ -1764,3 +1764,6 @@ pref("browser.onboarding.updatetour", "performance,library,screenshots,singlesea // Preference that allows individual users to disable Screenshots. pref("extensions.screenshots.disabled", false); +// Preference that allows individual users to leave Screenshots enabled, but +// disable uploading to the server. +pref("extensions.screenshots.upload-disabled", false);