Merge branch 'master' of github.com:designcreateplay/NodeBB

v1.18.x
Julian Lam 11 years ago
commit 560fa6ffe8

@ -552,13 +552,15 @@ define(['taskbar'], function(taskbar) {
if(items && items.length) { if(items && items.length) {
var blob = items[0].getAsFile(); var blob = items[0].getAsFile();
blob.name = 'upload-'+ utils.generateUUID(); if(blob) {
blob.name = 'upload-'+ utils.generateUUID();
var fd = new FormData(); var fd = new FormData();
fd.append('files[]', blob, blob.name); fd.append('files[]', blob, blob.name);
fileForm[0].reset(); fileForm[0].reset();
uploadSubmit([blob], post_uuid, '/api/post/upload', fd); uploadSubmit([blob], post_uuid, '/api/post/upload', fd);
}
} }
}); });
} }

Loading…
Cancel
Save