Prevent archieved download on secure view
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
edafd81a20
commit
6db47f7a6e
1 changed files with 4 additions and 1 deletions
|
@ -541,11 +541,14 @@ class ShareController extends AuthPublicShareController {
|
|||
}
|
||||
}
|
||||
|
||||
|
||||
if (!$this->validateShare($share)) {
|
||||
throw new NotFoundException();
|
||||
}
|
||||
|
||||
if ($share->getHideDownload()) {
|
||||
return new NotFoundResponse();
|
||||
}
|
||||
|
||||
$userFolder = $this->rootFolder->getUserFolder($share->getShareOwner());
|
||||
$originalSharePath = $userFolder->getRelativePath($share->getNode()->getPath());
|
||||
|
||||
|
|
Loading…
Reference in a new issue