From 43ae672b44c31e2365f3f8e15430924c2fefe7c5 Mon Sep 17 00:00:00 2001 From: "mr. m" Date: Thu, 5 Feb 2026 11:12:01 +0100 Subject: [PATCH] feat: Revert migration step for syncing only pinned tabs, b=no-bug, c=common --- src/zen/common/sys/ZenUIMigration.sys.mjs | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) diff --git a/src/zen/common/sys/ZenUIMigration.sys.mjs b/src/zen/common/sys/ZenUIMigration.sys.mjs index 1d6a8a7a7..1c6cac68e 100644 --- a/src/zen/common/sys/ZenUIMigration.sys.mjs +++ b/src/zen/common/sys/ZenUIMigration.sys.mjs @@ -12,7 +12,7 @@ ChromeUtils.defineESModuleGetters(lazy, { class nsZenUIMigration { PREF_NAME = "zen.ui.migration.version"; - MIGRATION_VERSION = 7; + MIGRATION_VERSION = 6; init(isNewProfile) { if (!isNewProfile) { @@ -127,10 +127,6 @@ class nsZenUIMigration { }, 1000); }); } - - _migrateV7() { - Services.prefs.setBoolPref("zen.window-sync.sync-only-pinned-tabs", true); - } } export var gZenUIMigration = new nsZenUIMigration();