Fix files_dropped in HTML5 export.

(Ignore trailing slash when creating the temporary directory)
This commit is contained in:
Luis Sanchez 2021-12-03 17:45:45 +01:00
parent 0e26152392
commit 40f26cb260

View file

@ -262,7 +262,7 @@ const GodotInputDragDrop = {
const DROP = `/tmp/drop-${parseInt(Math.random() * (1 << 30), 10)}/`;
const drops = [];
const files = [];
FS.mkdir(DROP);
FS.mkdir(DROP.slice(0, -1)); // Without trailing slash
GodotInputDragDrop.pending_files.forEach((elem) => {
const path = elem['path'];
GodotFS.copy_to_fs(DROP + path, elem['data']);