From 4d8ccfdc05ecd499defc13d5ebf2423f8733d516 Mon Sep 17 00:00:00 2001 From: Raymond Hill Date: Thu, 10 May 2018 16:11:29 -0400 Subject: [PATCH] fix https://bugzilla.mozilla.org/show_bug.cgi?id=1459007 --- tools/make-firefox-meta.py | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/tools/make-firefox-meta.py b/tools/make-firefox-meta.py index 4c0577ed0..b88227aa1 100644 --- a/tools/make-firefox-meta.py +++ b/tools/make-firefox-meta.py @@ -30,6 +30,11 @@ if match: firefox_manifest['version'] = match.group(1) + builttype else: firefox_manifest['version'] = version + # https://bugzilla.mozilla.org/show_bug.cgi?id=1459007 + # By design Firefox opens the sidebar with new installation of + # uBO when sidebar_action is present in the manifest. + # Remove sidebarAction support for stable release of uBO. + del firefox_manifest['sidebar_action'] with open(firefox_manifest_file, 'w') as f2: json.dump(firefox_manifest, f2, indent=2, separators=(',', ': '), sort_keys=True)