summaryrefslogtreecommitdiffstats
path: root/apps/files_sharing/lib/external
diff options
context:
space:
mode:
authorVincent Petry <pvince81@owncloud.com>2015-01-21 15:13:37 +0100
committerVincent Petry <pvince81@owncloud.com>2015-01-21 15:14:57 +0100
commit9fbdd1072ed4eac276261f23d855bca2ca932477 (patch)
tree161e01a99f31614752429b6d5fcf81c336335696 /apps/files_sharing/lib/external
parentff5715779c56ceacc870307bf25f4e769ff22a1a (diff)
downloadnextcloud-server-9fbdd1072ed4eac276261f23d855bca2ca932477.tar.gz
nextcloud-server-9fbdd1072ed4eac276261f23d855bca2ca932477.zip
Fix webdav mkdir for remote shares
Diffstat (limited to 'apps/files_sharing/lib/external')
-rw-r--r--apps/files_sharing/lib/external/cache.php3
1 files changed, 3 insertions, 0 deletions
diff --git a/apps/files_sharing/lib/external/cache.php b/apps/files_sharing/lib/external/cache.php
index cd06bfb1272..2f5f7a59dbd 100644
--- a/apps/files_sharing/lib/external/cache.php
+++ b/apps/files_sharing/lib/external/cache.php
@@ -28,6 +28,9 @@ class Cache extends \OC\Files\Cache\Cache {
public function get($file) {
$result = parent::get($file);
+ if (!$result) {
+ return false;
+ }
$result['displayname_owner'] = $this->remoteUser . '@' . $this->remote;
if (!$file || $file === '') {
$result['is_share_mount_point'] = true;