Commit 068b8ac0 authored by Alexander.Trofimov's avatar Alexander.Trofimov Committed by Alexander.Trofimov

fix bug #30189

git-svn-id: svn://192.168.3.15/activex/AVS/Sources/TeamlabOffice/trunk/OfficeWeb@64401 954022d7-b5bf-4e40-9824-e11837661b57
parent 2f6014db
......@@ -115,7 +115,7 @@ function g_fOpenFileCommand (binUrl, changesUrl, Signature, callback) {
g_oZipChanges = new (require('jszip'))(data);
oResult.changes = [];
for(var i in g_oZipChanges.files)
oResult.changes.push(JSON.parse(g_oZipChanges[i].asText()));
oResult.changes.push(JSON.parse(g_oZipChanges.files[i].asText()));
onEndOpen();
});
} else
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment