mirror of
https://repo.dactyloidae.xyz/Dactyloidae/UXP.git
synced 2026-09-21 07:47:32 +09:00
[PALEMOON] Fix "Permissions Manager" and "Remove All Cookies"
Follow up #273
This commit is contained in:
parent
7cfb2a0405
commit
e2c9b821d5
1 changed files with 2 additions and 1 deletions
|
|
@ -266,7 +266,8 @@ Site.prototype = {
|
|||
*/
|
||||
clearCookies: function Site_clearCookies() {
|
||||
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);
|
||||
});
|
||||
},
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue