We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f82adcb commit 06eef51Copy full SHA for 06eef51
src/components/https-everywhere.js
@@ -431,7 +431,8 @@ HTTPSEverywhere.prototype = {
431
var lst = this.getApplicableListForChannel(channel);
432
if (channel.URI.spec in https_everywhere_blacklist) {
433
this.log(DBUG, "Avoiding blacklisted " + channel.URI.spec);
434
- if (lst) lst.breaking_rule(https_everywhere_blacklist[channel.URI.spec]);
+ if (lst) lst.breaking_rule(https_everywhere_blacklist[channel.URI.spec])
435
+ else this.log(WARN,"Failed to indicate breakage in content menu");
436
return;
437
}
438
HTTPS.replaceChannel(lst, channel);
0 commit comments