From c9474cecc04d56717148c21b0aeba774db38c529 Mon Sep 17 00:00:00 2001 From: "mr. m" Date: Fri, 6 Feb 2026 14:10:02 +0100 Subject: [PATCH] feat: Remove null-setting for split view data on restore, b=no-bug, c=no-component --- src/zen/sessionstore/ZenSessionManager.sys.mjs | 1 - 1 file changed, 1 deletion(-) diff --git a/src/zen/sessionstore/ZenSessionManager.sys.mjs b/src/zen/sessionstore/ZenSessionManager.sys.mjs index 3bd8ce3d7..87150fa2c 100644 --- a/src/zen/sessionstore/ZenSessionManager.sys.mjs +++ b/src/zen/sessionstore/ZenSessionManager.sys.mjs @@ -566,7 +566,6 @@ export class nsZenSessionManager { // If we should only sync the pinned tabs, we should only edit the unpinned // tabs in the window data and keep the pinned tabs from the window data, // as they should be the same as the ones in the sidebar. - sidebar.splitViewData = null; if (lazy.gSyncOnlyPinnedTabs) { let pinnedTabs = (sidebar.tabs || []).filter((tab) => tab.pinned); let unpinedWindowTabs = (aWindowData.tabs || []).filter((tab) => !tab.pinned);