Skip to content
Snippets Groups Projects
Commit 2c773d54 authored by Michael Gapczynski's avatar Michael Gapczynski
Browse files

Don't overwrite fake directory stream for Shared storage

parent 19f94774
No related branches found
No related tags found
No related merge requests found
......@@ -81,8 +81,8 @@ class OC_Filestorage_Shared extends OC_Filestorage_Common {
$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) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment