Skip to content

Commit

Permalink
[fix] internal requests: added "moz-extension://"
Browse files Browse the repository at this point in the history
Web Extensions use the "moz-extension" scheme.
See also Mozilla Bug 1298856.
  • Loading branch information
myrdd committed Oct 1, 2016
1 parent 2a4bfb8 commit 4d46d25
Showing 1 changed file with 1 addition and 0 deletions.
1 change: 1 addition & 0 deletions src/components/requestpolicyService.js
Expand Up @@ -1896,6 +1896,7 @@ RequestPolicyService.prototype = {
|| aContentLocation.scheme == "chrome"
|| aContentLocation.scheme == "moz-icon"
|| aContentLocation.scheme == "moz-filedata"
|| aContentLocation.scheme == "moz-extension"
|| aContentLocation.scheme == "blob"
|| aContentLocation.scheme == "wyciwyg"
|| aContentLocation.scheme == "javascript") {
Expand Down

1 comment on commit 4d46d25

@alphapapa
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Thanks for fixing this.

Please sign in to comment.