shared files/folders are not mounted

remotes/origin/fix-10825
Thomas Müller 11 years ago
parent e33fc2807c
commit 9d2cff50ed
  1. 2
      lib/private/files/fileinfo.php

@ -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…
Cancel
Save