Pier Angelo Vendrame pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser
Commits: 786db184 by Henry Wilkes at 2024-08-08T15:24:27+01:00 fixup! Bug 41600: Add a tor circuit display panel.
Bug 42700: Remove !nodes condition from circuit panel.
Also updated comment.
- - - - -
1 changed file:
- browser/components/torcircuit/content/torCircuitPanel.js
Changes:
===================================== browser/components/torcircuit/content/torCircuitPanel.js ===================================== @@ -317,12 +317,11 @@ var gTorCircuitPanel = { this._currentBrowserData.domain === domain && this._currentBrowserData.scheme === scheme && this._currentBrowserData.nodes.length === nodes.length && - // If non-null, the fingerprints of the nodes match. - (!nodes || - nodes.every( - (n, index) => - n.fingerprint === this._currentBrowserData.nodes[index].fingerprint - )) + // The fingerprints of the nodes match. + nodes.every( + (n, index) => + n.fingerprint === this._currentBrowserData.nodes[index].fingerprint + ) ) { // No change. this._log.debug(
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/786db184...
tor-commits@lists.torproject.org