mirror of
https://github.com/nextcloud/spreed.git
synced 2025-12-18 05:20:50 +01:00
Merge pull request #3157 from nextcloud/bugfix/noid/shared-former-external-mount
Also bail out when the path is actually null
This commit is contained in:
commit
516e4ede99
1 changed files with 1 additions and 1 deletions
|
|
@ -830,7 +830,7 @@ class RoomShareProvider implements IShareProvider {
|
|||
|
||||
private function isAccessibleResult(array $data): bool {
|
||||
// exclude shares leading to deleted file entries
|
||||
if ($data['fileid'] === null) {
|
||||
if ($data['fileid'] === null || $data['path'] === null) {
|
||||
return false;
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue