]> git.immae.eu Git - perso/Immae/Projets/Nodejs/Surfer.git/commitdiff
Do not error if a user tries to upload a file without a type
authorJohannes Zellner <johannes@cloudron.io>
Fri, 18 May 2018 19:12:50 +0000 (21:12 +0200)
committerJohannes Zellner <johannes@cloudron.io>
Fri, 18 May 2018 19:12:50 +0000 (21:12 +0200)
frontend/js/app.js

index b68b6089cf5963831350d3ad0aa24179c2a1e7d7..dce3a602e43f42e8e487318d5b4c46977374be4d 100644 (file)
@@ -136,6 +136,9 @@ function uploadFiles(files) {
     app.uploadStatus.percentDone = 0;
 
     asyncForEach(files, function (file, callback) {
+        // do not handle directories (file.type is empty in such a case)
+        if (file.type === '') return callback();
+
         var path = encode(sanitize(app.path + '/' + (file.webkitRelativePath || file.name)));
 
         var formData = new FormData();