Bug 1162791 - Add-ons should be enabled by default when installed r=ferjm

This commit is contained in:
Fabrice Desré 2015-05-20 23:06:03 -07:00
parent dc25f58bca
commit 4eee1d8be4

View File

@ -549,7 +549,8 @@ WebappsApplication.prototype = {
},
get enabled() {
return this._proxy.enabled;
let value = this._proxy.enabled;
return (value === undefined ? true : value);
},
download: function() {