Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/nextcloud/server.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobin Appelman <robin@icewind.nl>2017-03-20 20:31:34 +0300
committerLukas Reschke <lukas@statuscode.ch>2017-05-23 00:16:25 +0300
commit0d20865548283035a43d8d9c7775437458178c28 (patch)
tree895c97e39102a7b336ba8e516935dba2bfb5be2a /apps/files_sharing
parent4652923011ee30ea28b94ab4bda202964b01040f (diff)
return failed cache if the shared storage failed to setup
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_sharing')
-rw-r--r--apps/files_sharing/lib/SharedStorage.php4
1 files changed, 4 insertions, 0 deletions
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;
}