tor-browser

The Tor Browser
git clone https://git.dasho.dev/tor-browser.git
Log | Files | Refs | README | LICENSE

commit 133388e7c5fe390d411425a23743068d87eb816d
parent da3155f674d6a85314d8d8b57b6715eb6918c59c
Author: Henrik Skupin <mail@hskupin.info>
Date:   Wed,  3 Dec 2025 10:02:05 +0000

Bug 2003540 - [remote] Fix removal of navigable id when a chrome window gets closed. r=jdescottes

Differential Revision: https://phabricator.services.mozilla.com/D274813

Diffstat:
Mremote/shared/NavigableManager.sys.mjs | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/remote/shared/NavigableManager.sys.mjs b/remote/shared/NavigableManager.sys.mjs @@ -287,7 +287,7 @@ class NavigableManagerClass { const { browsingContext } = data; if (!browsingContext.isContent) { - this.#chromeNavigables.deleteByValue(browsingContext); + this.#chromeNavigables.deleteByObject(browsingContext); } }; }