Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

bugfix: Fix Temporary Containers Automatic mode | change firefox -> zen for default cookiestore id #2411

Open
wants to merge 1 commit into
base: dev
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
17 changes: 17 additions & 0 deletions src/toolkit/components/extensions/parent/ext-toolkit-js.patch
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
diff --git a/toolkit/components/extensions/parent/ext-toolkit.js b/toolkit/components/extensions/parent/ext-toolkit.js
index c672cb96c0..e8226e7802 100644
--- a/toolkit/components/extensions/parent/ext-toolkit.js
+++ b/toolkit/components/extensions/parent/ext-toolkit.js
@@ -35,9 +35,9 @@ global.EventManager = ExtensionCommon.EventManager;

/* globals DEFAULT_STORE, PRIVATE_STORE, CONTAINER_STORE */

-global.DEFAULT_STORE = "firefox-default";
-global.PRIVATE_STORE = "firefox-private";
-global.CONTAINER_STORE = "firefox-container-";
+global.DEFAULT_STORE = "zen-default";
+global.PRIVATE_STORE = "zen-private";
+global.CONTAINER_STORE = "zen-container-";

global.getCookieStoreIdForTab = function (data, tab) {
if (data.incognito) {
Loading