Merge pull request #16630 from nextcloud/backport/16624/stable16
[stable16] Make sure we only fetch the file by id for the actual owner
This commit is contained in:
commit
291f85f0b8
1 changed files with 1 additions and 1 deletions
|
@ -183,7 +183,7 @@ class Storage {
|
|||
$eventDispatcher = \OC::$server->getEventDispatcher();
|
||||
$fileInfo = $files_view->getFileInfo($filename);
|
||||
$id = $fileInfo->getId();
|
||||
$nodes = \OC::$server->getRootFolder()->getById($id);
|
||||
$nodes = \OC::$server->getRootFolder()->getUserFolder($uid)->getById($id);
|
||||
foreach ($nodes as $node) {
|
||||
$event = new CreateVersionEvent($node);
|
||||
$eventDispatcher->dispatch('OCA\Files_Versions::createVersion', $event);
|
||||
|
|
Loading…
Reference in a new issue