Skip to content
Snippets Groups Projects
Commit 786db184 authored by henry's avatar henry
Browse files

fixup! Bug 41600: Add a tor circuit display panel.

Bug 42700: Remove !nodes condition from circuit panel.

Also updated comment.
parent 1208a39d
No related branches found
1 merge request!1078Remove !nodes condition from circuit panel
Pipeline #192687 passed
......@@ -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(
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment