We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6de4067 commit c7df151Copy full SHA for c7df151
src/components/ssl-observatory.js
@@ -128,7 +128,9 @@ function SSLObservatory() {
128
this.log(WARN, "Failed to initialize NSS component:" + e);
129
}
130
131
- this.testProxySettings();
+ // It is necessary to testProxySettings after the window is loaded, since the
132
+ // Tor Browser will not be finished establishing a circuit otherwise
133
+ OS.addObserver(this, "browser-delayed-startup-finished", false);
134
135
this.log(DBUG, "Loaded observatory component!");
136
@@ -398,6 +400,10 @@ SSLObservatory.prototype = {
398
400
399
401
402
403
+
404
+ if (topic == "browser-delayed-startup-finished") {
405
+ this.testProxySettings();
406
+ }
407
},
408
409
observatoryActive: function() {
0 commit comments