Align SessionStore.jsm with the updated getCookiesFromHost() API

This commit is contained in:
JustOff 2018-04-14 14:44:55 +03:00 committed by Roy Tam
commit f2a81e184d

View file

@ -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);