diff options
author | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-26 07:16:10 +0200 |
---|---|---|
committer | janekptacijarabaci <janekptacijarabaci@seznam.cz> | 2018-04-26 07:16:10 +0200 |
commit | eebf4162a992bd0cc70f9c58bbb6e543b0438c89 (patch) | |
tree | 1ce6d6fbcf5ff3cc49b0a0943d96b2e5766dc5cb /application/palemoon/components/preferences/aboutPermissions.js | |
parent | 49ba38d216ec1a1f73d0368e4942bfd6bed9e52e (diff) | |
download | UXP-eebf4162a992bd0cc70f9c58bbb6e543b0438c89.tar UXP-eebf4162a992bd0cc70f9c58bbb6e543b0438c89.tar.gz UXP-eebf4162a992bd0cc70f9c58bbb6e543b0438c89.tar.lz UXP-eebf4162a992bd0cc70f9c58bbb6e543b0438c89.tar.xz UXP-eebf4162a992bd0cc70f9c58bbb6e543b0438c89.zip |
Bug 1170200 - Part 2: Update JavaScript consumers of nsIPermissionManager::Remove
Diffstat (limited to 'application/palemoon/components/preferences/aboutPermissions.js')
-rw-r--r-- | application/palemoon/components/preferences/aboutPermissions.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/application/palemoon/components/preferences/aboutPermissions.js b/application/palemoon/components/preferences/aboutPermissions.js index 73d51909b..484758148 100644 --- a/application/palemoon/components/preferences/aboutPermissions.js +++ b/application/palemoon/components/preferences/aboutPermissions.js @@ -205,7 +205,7 @@ Site.prototype = { * e.g. "cookie", "geo", "indexedDB", "popup", "image" */ clearPermission: function Site_clearPermission(aType) { - Services.perms.remove(this.host, aType); + Services.perms.remove(this.httpURI, aType); }, /** |