From 29eae92fcb6b8df579d44d73ecc7d03c748ca15a Mon Sep 17 00:00:00 2001 From: "mr. m" Date: Fri, 20 Feb 2026 22:23:00 +0100 Subject: [PATCH] feat: Fix spelling mistake on recovery data, b=no-bug, c=no-component --- src/zen/sessionstore/ZenSessionManager.sys.mjs | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/zen/sessionstore/ZenSessionManager.sys.mjs b/src/zen/sessionstore/ZenSessionManager.sys.mjs index 70b456703..72a332238 100644 --- a/src/zen/sessionstore/ZenSessionManager.sys.mjs +++ b/src/zen/sessionstore/ZenSessionManager.sys.mjs @@ -177,7 +177,7 @@ export class nsZenSessionManager { } catch { /* ignore errors reading recovery data */ } - if (!data.recoverYData) { + if (!data.recoveryData) { try { data.recoveryData = await IOUtils.readJSON( PathUtils.join( @@ -223,6 +223,7 @@ export class nsZenSessionManager { } catch (e) { console.error("ZenSessionManager: Failed to read session file", e); } + console.log(this.#file.dataReady) this.#sidebar = this.#file.data || {}; if (!this.#sidebar.spaces?.length && !this._shouldRunMigration) { this.log("No spaces data found in session file, running migration", this.#sidebar);