[tor-commits] [Git][tpo/applications/tor-browser][tor-browser-128.1.0esr-14.0-1] fixup! Bug 41600: Add a tor circuit display panel.
    Pier Angelo Vendrame (@pierov) 
    git at gitlab.torproject.org
       
    Thu Aug  8 14:32:50 UTC 2024
    
    
  
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/786db184aa1629e21b5da30a8f3822bf7f5b0e62
-- 
View it on GitLab: https://gitlab.torproject.org/tpo/applications/tor-browser/-/commit/786db184aa1629e21b5da30a8f3822bf7f5b0e62
You're receiving this email because of your account on gitlab.torproject.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.torproject.org/pipermail/tor-commits/attachments/20240808/84191cf0/attachment-0001.htm>
    
    
More information about the tor-commits
mailing list