nodejs: fix for ie (496a150620)

This commit is contained in:
Sergey Linnik
2023-07-28 17:26:53 +03:00
parent 1d4bc95c29
commit 2bae0567ad

View File

@ -239,7 +239,8 @@
let fileList = JSON.parse(xhr.responseText);
let firstXlsxName;
let file;
for (file of fileList) {
for (var i = 0; i < fileList.length; i++) {
file = fileList[i];
if (file["title"]) {
if (getFileExt(file["title"]) === "xlsx")
{