Fixed issue #21452
removed whitespace removed whitespace Changed it based on PVince81's suggestion
This commit is contained in:
parent
cc4e4ecf0f
commit
ace66057f2
|
@ -642,7 +642,13 @@
|
|||
};
|
||||
|
||||
OCA.Files.FileActions.updateFileActionSpinner(downloadFileaction, true);
|
||||
OCA.Files.Files.handleDownload(this.getDownloadUrl(files, dir, true), disableLoadingState);
|
||||
if(this.getSelectedFiles().length > 1) {
|
||||
OCA.Files.Files.handleDownload(this.getDownloadUrl(files, dir, true), disableLoadingState);
|
||||
}
|
||||
else {
|
||||
first = this.getSelectedFiles()[0];
|
||||
OCA.Files.Files.handleDownload(this.getDownloadUrl(first.name, dir, true), disableLoadingState);
|
||||
}
|
||||
return false;
|
||||
},
|
||||
|
||||
|
|
Loading…
Reference in New Issue