mirror of
https://github.com/nextcloud/server.git
synced 2026-05-20 09:12:51 -04:00
shared files/folders are not mounted
This commit is contained in:
parent
e33fc2807c
commit
9d2cff50ed
1 changed files with 1 additions and 1 deletions
|
|
@ -215,7 +215,7 @@ class FileInfo implements \OCP\Files\FileInfo, \ArrayAccess {
|
|||
$sid = $this->getStorage()->getId();
|
||||
if (!is_null($sid)) {
|
||||
$sid = explode(':', $sid);
|
||||
return ($sid[0] !== 'local' and $sid[0] !== 'home');
|
||||
return ($sid[0] !== 'local' and $sid[0] !== 'home' and $sid[0] !== 'shared');
|
||||
}
|
||||
|
||||
return false;
|
||||
|
|
|
|||
Loading…
Reference in a new issue