summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorJustOff <Off.Just.Off@gmail.com>2018-04-14 14:44:55 +0300
committerJustOff <Off.Just.Off@gmail.com>2018-04-14 14:44:55 +0300
commit31e756cf050c5130a222ead60491599c11acfb60 (patch)
tree5a9660bd2edd05cf5d974872540d72eb63581355 /application
parentc73c73b7978d7fc12e0dc07bb7c8f3babd497b8c (diff)
downloadUXP-31e756cf050c5130a222ead60491599c11acfb60.tar
UXP-31e756cf050c5130a222ead60491599c11acfb60.tar.gz
UXP-31e756cf050c5130a222ead60491599c11acfb60.tar.lz
UXP-31e756cf050c5130a222ead60491599c11acfb60.tar.xz
UXP-31e756cf050c5130a222ead60491599c11acfb60.zip
Align SessionStore.jsm with the updated getCookiesFromHost() API
Diffstat (limited to 'application')
-rw-r--r--application/palemoon/components/sessionstore/SessionStore.jsm2
1 files changed, 1 insertions, 1 deletions
diff --git a/application/palemoon/components/sessionstore/SessionStore.jsm b/application/palemoon/components/sessionstore/SessionStore.jsm
index 5e09ff5c8..3185dee9b 100644
--- a/application/palemoon/components/sessionstore/SessionStore.jsm
+++ b/application/palemoon/components/sessionstore/SessionStore.jsm
@@ -2404,7 +2404,7 @@ let SessionStoreInternal = {
for (var [host, isPinned] in Iterator(internalWindow.hosts)) {
let list;
try {
- list = Services.cookies.getCookiesFromHost(host);
+ list = Services.cookies.getCookiesFromHost(host, {});
}
catch (ex) {
debug("getCookiesFromHost failed. Host: " + host);