Bug 1226386: Fix call to Utils.catch to pass the correct this and to give the correct this to AddonWrapper.uninstall(). r=gps

--HG--
extra : commitid : FWuxWijkzHE
extra : rebase_source : bef5ded49e3fe6ea44c6f1539dca7f4be6dcbfcf
This commit is contained in:
Dave Townsend 2015-11-23 09:22:33 -08:00
Родитель f6c6e0cc02
Коммит 47d1a3c958
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -475,7 +475,7 @@ AddonsStore.prototype = {
}
this._log.info("Uninstalling add-on as part of wipe: " + addon.id);
Utils.catch(addon.uninstall)();
Utils.catch.call(this, () => addon.uninstall())();
}
},