Merge pull request #13887 from nextcloud/backport/13883/stable15

[stable15] Fix dropping a folder on a folder row
This commit is contained in:
Morris Jobke 2019-01-30 14:09:20 +01:00 committed by GitHub
commit dbdc5c4dd4
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 1 deletions

View File

@ -523,7 +523,9 @@ OC.Uploader.prototype = _.extend({
self.filesClient.createDirectory(fullPath).always(function(status) {
// 405 is expected if the folder already exists
if ((status >= 200 && status < 300) || status === 405) {
self.trigger('createdfolder', fullPath);
if (status !== 405) {
self.trigger('createdfolder', fullPath);
}
deferred.resolve();
return;
}