We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1cb1f39 commit 2b402dcCopy full SHA for 2b402dc
apps/files_sharing/lib/MountProvider.php
@@ -55,7 +55,7 @@ public function getMountsForUser(IUser $user, IStorageFactory $loader) {
55
56
// filter out excluded shares and group shares that includes self
57
$shares = array_filter($shares, function (IShare $share) use ($user) {
58
- return $share->getPermissions() > 0 && $share->getShareOwner() !== $user->getUID();
+ return $share->getPermissions() > 0 && $share->getSharedBy() !== $user->getUID();
59
});
60
61
$superShares = $this->buildSuperShares($shares, $user);
0 commit comments