Skip to content

Commit

Permalink
Merge pull request #25274 from nextcloud/fix/19647/federated_users_ar…
Browse files Browse the repository at this point in the history
…e_not_valid_users

Do not obtain userFolder of a federated user
  • Loading branch information
rullzer authored Jan 22, 2021
2 parents 9394333 + a098828 commit 4c10b59
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion apps/files_trashbin/lib/Storage.php
Original file line number Diff line number Diff line change
Expand Up @@ -135,7 +135,7 @@ protected function shouldMoveToTrash($path) {
// check if there is a app which want to disable the trash bin for this file
$fileId = $this->storage->getCache()->getId($path);
$owner = $this->storage->getOwner($path);
if ($owner === false) {
if ($owner === false || $this->storage->instanceOfStorage(\OCA\Files_Sharing\External\Storage::class)) {
$nodes = $this->rootFolder->getById($fileId);
} else {
$nodes = $this->rootFolder->getUserFolder($owner)->getById($fileId);
Expand Down

0 comments on commit 4c10b59

Please sign in to comment.