forked from rDrama/rDrama
1
0
Fork 0

dont insert filenames if they dont actually get attached

master
Aevann 2024-02-13 15:06:54 +02:00
parent 1c88ea8851
commit e97b10613b
1 changed files with 3 additions and 0 deletions

View File

@ -545,6 +545,8 @@ function handle_files(input, newfiles) {
oldfiles[ta.id] = new DataTransfer();
}
const oldtext = ta.value;
for (let file of newfiles) {
if (file.name == 'image.png') {
const blob = file.slice(0, file.size, 'image/png');
@ -561,6 +563,7 @@ function handle_files(input, newfiles) {
{
window.alert("You can't upload more than 20 files at one time!")
input.value = null
ta.value = oldtext
oldfiles[ta.id] = new DataTransfer();
return
}