Prevent archieved download on secure view
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
d2d7e37b7b
commit
35d4ca4d5d
1 changed files with 4 additions and 1 deletions
|
@ -529,11 +529,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