diff --git a/dom/apps/src/Webapps.jsm b/dom/apps/src/Webapps.jsm index 44d2a6c4ac47..d3ed41e9a841 100644 --- a/dom/apps/src/Webapps.jsm +++ b/dom/apps/src/Webapps.jsm @@ -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));