Fix cache errors

Reviewed By: yungsters

Differential Revision: D2806495

fb-gh-sync-id: 4c1088cde8f0b88070f31b3a130b66f20a2a07cb
This commit is contained in:
Martín Bigio 2016-01-05 22:02:14 -08:00 committed by facebook-github-bot-4
parent 18f1fb2046
commit 3ba3503cd8
1 changed files with 4 additions and 0 deletions

View File

@ -135,6 +135,10 @@ class Cache {
.then(values => {
var json = Object.create(null);
Object.keys(data).forEach((key, i) => {
if (!values[i]) {
return;
}
json[key] = Object.create(null);
json[key].metadata = data[key].metadata;
json[key].data = values[i].data;