2
0
Эх сурвалжийг харах

Merge pull request #55594 from Fro-Z/fix-html-file-drop

Fix files_dropped in HTML5 export mono builds.
Fabio Alessandrelli 3 жил өмнө
parent
commit
41e5f9227c

+ 1 - 1
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']);