This commit is contained in:
Bruno Rybársky 2024-04-25 22:43:07 +02:00
parent a33d5c1eb7
commit 03556a1642

@ -581,19 +581,21 @@ async function getFileList() {
let xhr = new XMLHttpRequest();
xhr.open('POST', '/upload', true);
let tmp;
xhr.onload = function () {
if (xhr.status === 200) {
const resp = JSON.parse(xhr.responseText);
if (resp.Status == "Success") {
return resp.Files;
tmp = resp.Files;
}
else {
return false;
tmp = false;
}
}
};
xhr.send(formData);
while (tmp === undefined);
return tmp;
}
async function listFiles() {