Import the used classes
Signed-off-by: Joas Schilling <coding@schilljs.com>
This commit is contained in:
parent
729c06548f
commit
b130267e58
|
@ -33,6 +33,7 @@ namespace OCA\Files_Sharing;
|
||||||
|
|
||||||
use OC\Files\Filesystem;
|
use OC\Files\Filesystem;
|
||||||
use OC\Files\Cache\FailedCache;
|
use OC\Files\Cache\FailedCache;
|
||||||
|
use OC\Files\Storage\FailedStorage;
|
||||||
use OCP\Constants;
|
use OCP\Constants;
|
||||||
use OCP\Files\Cache\ICacheEntry;
|
use OCP\Files\Cache\ICacheEntry;
|
||||||
use OCP\Files\NotFoundException;
|
use OCP\Files\NotFoundException;
|
||||||
|
@ -170,6 +171,8 @@ class SharedStorage extends \OC\Files\Storage\Wrapper\Jail implements ISharedSto
|
||||||
if (!$this->file_exists($path)) {
|
if (!$this->file_exists($path)) {
|
||||||
return false;
|
return false;
|
||||||
}
|
}
|
||||||
|
/** @var IStorage $storage */
|
||||||
|
/** @var string $internalPath */
|
||||||
list($storage, $internalPath) = $this->resolvePath($path);
|
list($storage, $internalPath) = $this->resolvePath($path);
|
||||||
return $storage->isReadable($internalPath);
|
return $storage->isReadable($internalPath);
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue