зеркало из https://github.com/mozilla/gecko-dev.git
Bug 803385. Make sure cookie value is not undefined before trying to trim it. r=felipe a=gavin
This commit is contained in:
Родитель
62f31e208d
Коммит
f521251c82
|
@ -69,7 +69,7 @@ WorkerAPI.prototype = {
|
|||
cookies.forEach(function(aCookie) {
|
||||
let [name, value] = aCookie.split("=");
|
||||
results.push({name: unescape(name.trim()),
|
||||
value: unescape(value.trim())});
|
||||
value: value ? unescape(value.trim()) : ""});
|
||||
});
|
||||
this._port.postMessage({topic: "social.cookies-get-response",
|
||||
data: results});
|
||||
|
|
Загрузка…
Ссылка в новой задаче