Don't try the actual file upload if the checks already error out

Signed-off-by: Roeland Jago Douma <roeland@famdouma.nl>
This commit is contained in:
Roeland Jago Douma 2017-08-24 14:55:17 +02:00
parent 2c6bc236cb
commit 99b102e15d
No known key found for this signature in database
GPG Key ID: F941078878347C0C
3 changed files with 6 additions and 0 deletions

View File

@ -1113,6 +1113,9 @@ OC.Uploader.prototype = _.extend({
});
fileupload.on('fileuploaddrop', function(e, data) {
self.trigger('drop', e, data);
if (e.isPropagationStopped()) {
return false;
}
});
}

View File

@ -2790,6 +2790,7 @@
var isCreatable = (self.getDirectoryPermissions() & OC.PERMISSION_CREATE) !== 0;
if (!isCreatable) {
self._showPermissionDeniedNotification();
e.stopPropagation();
return false;
}

View File

@ -2696,6 +2696,8 @@ describe('OCA.Files.FileList tests', function() {
target: $target
},
preventDefault: function () {
},
stopPropagation: function() {
}
};
uploader.trigger('drop', eventData, data || {});