forked from rDrama/rDrama
1
0
Fork 0

fix first image not uploading

master
Aevann 2023-08-18 05:11:21 +03:00
parent da0cb474bd
commit ed8713e34e
1 changed files with 7 additions and 8 deletions

View File

@ -487,17 +487,16 @@ function handle_files(input, newfiles) {
const ta = input.parentElement.parentElement.parentElement.parentElement.querySelector('textarea.file-ta');
if (oldfiles[ta.id]) {
for (const file of newfiles) {
oldfiles[ta.id].items.add(file);
}
input.files = oldfiles[ta.id].files;
}
else {
input.files = newfiles;
if (!oldfiles[ta.id]) {
oldfiles[ta.id] = new DataTransfer();
}
for (const file of newfiles) {
oldfiles[ta.id].items.add(file);
}
input.files = oldfiles[ta.id].files;
if (input.files.length > 20)
{
window.alert("You can't upload more than 20 files at one time!")