fix(dom) getDataFromStorage: callback called twice

This commit is contained in:
coderaiser 2017-01-24 11:14:36 +02:00
parent d0db63c3b0
commit 18ee400d6f

View file

@ -1231,8 +1231,8 @@ var CloudCmd, Util, DOM, CloudFunc;
return Util.exec(callback);
Util.exec.parallel([
exec.with(Storage.get, nameData, callback),
exec.with(Storage.get, nameHash, callback),
exec.with(Storage.get, nameData),
exec.with(Storage.get, nameHash),
], callback);
};