mirror of
https://github.com/nextcloud/server.git
synced 2026-06-13 18:50:47 -04:00
Allow single file downloads so the video player works again
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
8cc4bc676d
commit
b1fe148a71
1 changed files with 10 additions and 8 deletions
|
|
@ -528,10 +528,6 @@ class ShareController extends AuthPublicShareController {
|
|||
throw new NotFoundException();
|
||||
}
|
||||
|
||||
if ($share->getHideDownload()) {
|
||||
return new NotFoundResponse();
|
||||
}
|
||||
|
||||
$userFolder = $this->rootFolder->getUserFolder($share->getShareOwner());
|
||||
$originalSharePath = $userFolder->getRelativePath($share->getNode()->getPath());
|
||||
|
||||
|
|
@ -561,11 +557,17 @@ class ShareController extends AuthPublicShareController {
|
|||
if ($node instanceof \OCP\Files\File) {
|
||||
// Single file download
|
||||
$this->singleFileDownloaded($share, $share->getNode());
|
||||
} else if (!empty($files_list)) {
|
||||
$this->fileListDownloaded($share, $files_list, $node);
|
||||
} else {
|
||||
// The folder is downloaded
|
||||
$this->singleFileDownloaded($share, $share->getNode());
|
||||
if ($share->getHideDownload()) {
|
||||
return new NotFoundResponse();
|
||||
}
|
||||
|
||||
if (!empty($files_list)) {
|
||||
$this->fileListDownloaded($share, $files_list, $node);
|
||||
} else {
|
||||
// The folder is downloaded
|
||||
$this->singleFileDownloaded($share, $share->getNode());
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue