diff options
author | Robin Appelman <robin@icewind.nl> | 2016-06-27 22:26:43 +0200 |
---|---|---|
committer | Thomas Müller <DeepDiver1975@users.noreply.github.com> | 2016-06-27 22:26:43 +0200 |
commit | 2a72eff9ee5c337f75e8d0434cd93aada6a38eec (patch) | |
tree | 339f14248f7bbfb07de25a6770bccd56d09b4915 /apps/files_sharing | |
parent | 1710de8afbb1d7acc2025642893da791bd6caefa (diff) | |
download | nextcloud-server-2a72eff9ee5c337f75e8d0434cd93aada6a38eec.tar.gz nextcloud-server-2a72eff9ee5c337f75e8d0434cd93aada6a38eec.zip |
Fix getting the certificate bundle for dav external storage (#25274)
* Fix getting the certificate bundle for dav external storages
* Log the original exception in dav external storage
Diffstat (limited to 'apps/files_sharing')
-rw-r--r-- | apps/files_sharing/lib/External/Manager.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_sharing/lib/External/Manager.php b/apps/files_sharing/lib/External/Manager.php index e338e6e509c..3f665b0978d 100644 --- a/apps/files_sharing/lib/External/Manager.php +++ b/apps/files_sharing/lib/External/Manager.php @@ -328,7 +328,7 @@ class Manager { public function removeShare($mountPoint) { $mountPointObj = $this->mountManager->find($mountPoint); - $id = $mountPointObj->getStorage()->getCache()->getId(); + $id = $mountPointObj->getStorage()->getCache()->getId(''); $mountPoint = $this->stripPath($mountPoint); $hash = md5($mountPoint); |