feat: Revert migration step for syncing only pinned tabs, b=no-bug, c=common

This commit is contained in:
mr. m
2026-02-05 11:12:01 +01:00
parent 84a54c9dbb
commit 43ae672b44

View File

@@ -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();