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