diff options
author | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-03-31 09:44:30 +0200 |
---|---|---|
committer | wolfbeast <mcwerewolf@wolfbeast.com> | 2020-04-14 13:20:35 +0200 |
commit | 2407845ec187fc0bddcf061f41a5791c7041d9ff (patch) | |
tree | d367a246976a3f7e72842a4120b29d975d566b5d /toolkit | |
parent | 3f09b298b0d3b737e88115c869af8393a75bfd31 (diff) | |
download | UXP-2407845ec187fc0bddcf061f41a5791c7041d9ff.tar UXP-2407845ec187fc0bddcf061f41a5791c7041d9ff.tar.gz UXP-2407845ec187fc0bddcf061f41a5791c7041d9ff.tar.lz UXP-2407845ec187fc0bddcf061f41a5791c7041d9ff.tar.xz UXP-2407845ec187fc0bddcf061f41a5791c7041d9ff.zip |
Issue #1280 - Un-bust certerror pages and ForgetAboutSite
Diffstat (limited to 'toolkit')
-rw-r--r-- | toolkit/forgetaboutsite/ForgetAboutSite.jsm | 7 |
1 files changed, 3 insertions, 4 deletions
diff --git a/toolkit/forgetaboutsite/ForgetAboutSite.jsm b/toolkit/forgetaboutsite/ForgetAboutSite.jsm index 8c7825392..9d7e512a8 100644 --- a/toolkit/forgetaboutsite/ForgetAboutSite.jsm +++ b/toolkit/forgetaboutsite/ForgetAboutSite.jsm @@ -216,8 +216,8 @@ this.ForgetAboutSite = { }); })); - // HSTS and HPKP - // TODO (bug 1290529): also remove HSTS/HPKP information for subdomains. + // HSTS + // TODO (bug 1290529): also remove HSTS information for subdomains. // Since we can't enumerate the information in the site security service // (bug 1115712), we can't implement this right now. promises.push(Task.spawn(function*() { @@ -225,9 +225,8 @@ this.ForgetAboutSite = { getService(Ci.nsISiteSecurityService); let httpsURI = NetUtil.newURI("https://" + aDomain); sss.removeState(Ci.nsISiteSecurityService.HEADER_HSTS, httpsURI, 0); - sss.removeState(Ci.nsISiteSecurityService.HEADER_HPKP, httpsURI, 0); }).catch(ex => { - throw new Error("Exception thrown while clearing HSTS/HPKP: " + ex); + throw new Error("Exception thrown while clearing HSTS: " + ex); })); let ErrorCount = 0; |