summaryrefslogtreecommitdiffstats
path: root/application
diff options
context:
space:
mode:
authorNew Tobin Paradigm <email@mattatobin.com>2018-04-14 10:12:52 -0400
committerGitHub <noreply@github.com>2018-04-14 10:12:52 -0400
commitc8bdd9c32eb4449d3fc44ea9ee6d369ed635ff9b (patch)
treee7514dfb02d0712cc3dd702d29bbe59e00d6fc5d /application
parent9147cc196982be5c4a0152d7ee1d24e6e554a2e2 (diff)
parent31e756cf050c5130a222ead60491599c11acfb60 (diff)
downloadUXP-c8bdd9c32eb4449d3fc44ea9ee6d369ed635ff9b.tar
UXP-c8bdd9c32eb4449d3fc44ea9ee6d369ed635ff9b.tar.gz
UXP-c8bdd9c32eb4449d3fc44ea9ee6d369ed635ff9b.tar.lz
UXP-c8bdd9c32eb4449d3fc44ea9ee6d369ed635ff9b.tar.xz
UXP-c8bdd9c32eb4449d3fc44ea9ee6d369ed635ff9b.zip
Merge pull request #163 from JustOff/PR_SessionStore_getCookiesFromHost
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);