зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1239484 - remove use of Object.values() r=mossop
--HG-- extra : rebase_source : acc92d461bdbb594b207637f51c87112bd054e57
This commit is contained in:
Родитель
245784b7e6
Коммит
c14128889e
|
@ -126,7 +126,7 @@ var gChecking = {
|
|||
if (this._completeCount < this._addonCount)
|
||||
return;
|
||||
|
||||
let addons = Object.values(gAddons);
|
||||
let addons = Object.keys(gAddons).map(k => gAddons[k]);
|
||||
|
||||
addons.sort(function(a, b) {
|
||||
let orderA = orderForScope(a.addon.scope);
|
||||
|
|
|
@ -60,7 +60,7 @@ this.AddonRepository_SQLiteMigrator = {
|
|||
|
||||
this._retrieveStoredData((results) => {
|
||||
this._closeConnection();
|
||||
let resultArray = Object.values(results);
|
||||
let resultArray = Object.keys(results).map(k => results[k]);
|
||||
logger.debug(resultArray.length + " addons imported.")
|
||||
aCallback(resultArray);
|
||||
});
|
||||
|
|
Загрузка…
Ссылка в новой задаче