Bug 818674 - "ReferenceError: manifest is not defined" in Webapps.jsm inline function readCSPs. r=fabrice

This commit is contained in:
Jens Hatlak 2012-12-07 18:07:04 +01:00
Родитель 65bfd8db0e
Коммит 1bb3fa9b51
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -158,7 +158,7 @@ this.DOMApplicationRegistry = {
// twice
this._readManifests(ids, (function readCSPs(aResults) {
aResults.forEach(function registerManifest(aResult) {
this.webapps[aResult.id].csp = manifest.csp || "";
this.webapps[aResult.id].csp = aResult.manifest.csp || "";
}, this);
}).bind(this));