fix result not defined error in js client

This commit is contained in:
Ferris Tseng
2016-06-16 15:36:50 -04:00
committed by Ferris Tseng
parent 77d1d97da5
commit 3852736b40

View File

@@ -489,7 +489,7 @@
} else {
for (var k in data) {
if (data.hasOwnProperty(k))
result[k] = exports.convertToType(data[k], itemType);
obj[k] = exports.convertToType(data[k], itemType);
}
}
};