diff options
author | Luis Sanchez <fro-z@email.cz> | 2021-12-03 17:45:45 +0100 |
---|---|---|
committer | Luis Sanchez <fro-z@email.cz> | 2021-12-03 20:21:39 +0100 |
commit | 40f26cb26097ab7ad62b18ec6018221616124b3f (patch) | |
tree | be2e752bee992b96e80406919c40095dafbcbb01 | |
parent | 0e261523926e776bc0b1b85178a60fa476490a9c (diff) |
Fix files_dropped in HTML5 export.
(Ignore trailing slash when creating the temporary directory)
-rw-r--r-- | platform/javascript/js/libs/library_godot_input.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/platform/javascript/js/libs/library_godot_input.js b/platform/javascript/js/libs/library_godot_input.js index 945dbba902..f403e85a30 100644 --- a/platform/javascript/js/libs/library_godot_input.js +++ b/platform/javascript/js/libs/library_godot_input.js @@ -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']); |