mirror of
https://github.com/nextcloud/server.git
synced 2026-02-20 00:12:30 -05:00
Don't overwrite fake directory stream for Shared storage
This commit is contained in:
parent
c0e86489c9
commit
895d5707ee
1 changed files with 2 additions and 2 deletions
|
|
@ -81,8 +81,8 @@ class OC_Filestorage_Shared extends OC_Filestorage {
|
|||
$files[] = basename($item['target']);
|
||||
}
|
||||
}
|
||||
OC_FakeDirStream::$dirs['shared']=$files;
|
||||
return opendir('fakedir://shared');
|
||||
OC_FakeDirStream::$dirs['shared'.$path] = $files;
|
||||
return opendir('fakedir://shared'.$path);
|
||||
} else {
|
||||
$source = $this->getSource($path);
|
||||
if ($source) {
|
||||
|
|
|
|||
Loading…
Reference in a new issue