Browse Source

try to get path from filesystem

remotes/origin/fix-10825
Bjoern Schiessle 11 years ago
parent
commit
527e1d001f
  1. 5
      apps/files_sharing/lib/share/file.php

5
apps/files_sharing/lib/share/file.php

@ -49,6 +49,11 @@ class OC_Share_Backend_File implements OCP\Share_Backend_File_Dependent {
$path = $this->path;
$this->path = null;
return $path;
} else {
$path = \OC\Files\Filesystem::getPath($itemSource);
if ($path) {
return $path;
}
}
return false;
}

Loading…
Cancel
Save