[PALEMOON] Fix "Permissions Manager" and "Remove All Cookies"

Follow up #273
This commit is contained in:
janekptacijarabaci 2018-06-19 10:33:56 +02:00 committed by Roy Tam
commit e2c9b821d5

View file

@ -266,7 +266,8 @@ Site.prototype = {
*/ */
clearCookies: function Site_clearCookies() { clearCookies: function Site_clearCookies() {
this.cookies.forEach(function(aCookie) { this.cookies.forEach(function(aCookie) {
Services.cookies.remove(aCookie.host, aCookie.name, aCookie.path, false); Services.cookies.remove(aCookie.host, aCookie.name, aCookie.path, false,
aCookie.originAttributes);
}); });
}, },