We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 34ad512 commit 86fb0b6Copy full SHA for 86fb0b6
src/components/ssl-observatory.js
@@ -412,6 +412,10 @@ SSLObservatory.prototype = {
412
buildRequest: function(params) {
413
var req = Cc["@mozilla.org/xmlextras/xmlhttprequest;1"]
414
.createInstance(Ci.nsIXMLHttpRequest);
415
+
416
+ // We do this again in case the user altered about:config
417
+ var host=this.prefs.getCharPref("extensions.https_everywhere._observatory.server_host");
418
+ this.submit_url = "https://" + host + "/submit_cert";
419
req.open("POST", this.submit_url+this.csrf_nonce, true);
420
421
// Send the proper header information along with the request
0 commit comments