From eb7c0990a0a3194a60fdca89d4b5caf25e5f80ee Mon Sep 17 00:00:00 2001 From: Robert Helmer Date: Fri, 16 Aug 2019 13:52:14 +0000 Subject: [PATCH] Bug 1573285 - set system add-on enable pref on by default for Fennec r=snorp This was originally added in bug 1428459 to separate system add-on updates from app updates, but the pref only made it to desktop and not mobile. Differential Revision: https://phabricator.services.mozilla.com/D41795 --HG-- extra : moz-landing-system : lando --- mobile/android/app/mobile.js | 1 + 1 file changed, 1 insertion(+) diff --git a/mobile/android/app/mobile.js b/mobile/android/app/mobile.js index fa66b1d93d7e..e7c6d7beb773 100644 --- a/mobile/android/app/mobile.js +++ b/mobile/android/app/mobile.js @@ -810,6 +810,7 @@ pref("media.navigator.permission.device", true); // Allow system add-on updates pref("extensions.systemAddon.update.url", "https://aus5.mozilla.org/update/3/SystemAddons/%VERSION%/%BUILD_ID%/%BUILD_TARGET%/%LOCALE%/%CHANNEL%/%OS_VERSION%/%DISTRIBUTION%/%DISTRIBUTION_VERSION%/update.xml"); +pref("extensions.systemAddon.update.enabled", true); // E10s stuff. We don't support 'file' or 'priveleged' process types. pref("browser.tabs.remote.separateFileUriProcess", false);