Skip to content

Commit

Permalink
Hotfix for #57 ... removing alerts until they are better managed
Browse files Browse the repository at this point in the history
  • Loading branch information
kaihendry committed May 28, 2015
1 parent a5071bc commit 18f9159
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion components/fileBlockService.js
Original file line number Diff line number Diff line change
Expand Up @@ -121,7 +121,7 @@ FileBlock.prototype = {
// If we had a whitelist, reject everything else
if (this.whitelist.length > 0) {
if (aContentType == Ci.nsIContentPolicy.TYPE_DOCUMENT) {
Services.prompt.alert(null, "Webconverger", "Not allowed, whitelist only permits: " + this.whitelist.join(", "));
// Services.prompt.alert(null, "Webconverger", "Not allowed, whitelist only permits: " + this.whitelist.join(", "));
return Ci.nsIContentPolicy.REJECT_REQUEST;
}
}
Expand Down

0 comments on commit 18f9159

Please sign in to comment.