From 0d20865548283035a43d8d9c7775437458178c28 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Mon, 20 Mar 2017 18:31:34 +0100 Subject: return failed cache if the shared storage failed to setup Signed-off-by: Robin Appelman --- apps/files_sharing/lib/SharedStorage.php | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'apps/files_sharing') diff --git a/apps/files_sharing/lib/SharedStorage.php b/apps/files_sharing/lib/SharedStorage.php index 77bbb2f227b..2cfba16c686 100644 --- a/apps/files_sharing/lib/SharedStorage.php +++ b/apps/files_sharing/lib/SharedStorage.php @@ -31,6 +31,7 @@ namespace OCA\Files_Sharing; +use OC\Files\Cache\FailedCache; use OC\Files\Filesystem; use OC\Files\Storage\Wrapper\PermissionsMask; use OC\Files\Storage\FailedStorage; @@ -353,6 +354,9 @@ class SharedStorage extends \OC\Files\Storage\Wrapper\Jail implements ISharedSto if (!$storage) { $storage = $this; } + if ($this->storage instanceof FailedStorage) { + return new FailedCache(); + } $this->cache = new \OCA\Files_Sharing\Cache($storage, $this->getSourceRootInfo(), $this->superShare); return $this->cache; } -- cgit v1.2.3