Pier Angelo Vendrame pushed to branch tor-browser-128.1.0esr-14.0-1 at The Tor Project / Applications / Tor Browser

Commits:

1 changed file:

Changes:

  • browser/components/torcircuit/content/torCircuitPanel.js
    ... ... @@ -317,12 +317,11 @@ var gTorCircuitPanel = {
    317 317
           this._currentBrowserData.domain === domain &&
    
    318 318
           this._currentBrowserData.scheme === scheme &&
    
    319 319
           this._currentBrowserData.nodes.length === nodes.length &&
    
    320
    -      // If non-null, the fingerprints of the nodes match.
    
    321
    -      (!nodes ||
    
    322
    -        nodes.every(
    
    323
    -          (n, index) =>
    
    324
    -            n.fingerprint === this._currentBrowserData.nodes[index].fingerprint
    
    325
    -        ))
    
    320
    +      // The fingerprints of the nodes match.
    
    321
    +      nodes.every(
    
    322
    +        (n, index) =>
    
    323
    +          n.fingerprint === this._currentBrowserData.nodes[index].fingerprint
    
    324
    +      )
    
    326 325
         ) {
    
    327 326
           // No change.
    
    328 327
           this._log.debug(