Fixing file drag and drop.

This commit is contained in:
Marc-Andre Ferland 2022-11-22 11:09:47 -05:00
parent d9b9f80a93
commit 3169485f33

View File

@ -408,7 +408,7 @@ async function parseContent(text) {
}
async function readFile(file, i) {
console.log(`Event %o reading file[${i}]:${file.name}...`, e)
console.log(`Event %o reading file[${i}]:${file.name}...`)
const fileContent = (await file.text()).trim()
return await parseContent(fileContent)
}