summaryrefslogtreecommitdiffstats
path: root/apps/files_external/lib/Config/ConfigAdapter.php
diff options
context:
space:
mode:
authorRobin Appelman <icewind@owncloud.com>2016-07-13 16:29:51 +0200
committerRobin Appelman <icewind@owncloud.com>2016-07-13 16:34:08 +0200
commit29eeeb2273782b72219c603e084a1d459514c361 (patch)
tree29ca6e4c3ab0b987ceebb0106df04b30feeee48b /apps/files_external/lib/Config/ConfigAdapter.php
parentafef11f84aef91178d5bb566d6e726f969fd69d9 (diff)
downloadnextcloud-server-29eeeb2273782b72219c603e084a1d459514c361.tar.gz
nextcloud-server-29eeeb2273782b72219c603e084a1d459514c361.zip
Save the files external mount id in the mount cache table
Diffstat (limited to 'apps/files_external/lib/Config/ConfigAdapter.php')
-rw-r--r--apps/files_external/lib/Config/ConfigAdapter.php3
1 files changed, 2 insertions, 1 deletions
diff --git a/apps/files_external/lib/Config/ConfigAdapter.php b/apps/files_external/lib/Config/ConfigAdapter.php
index 48a521a76f3..9375ff74c56 100644
--- a/apps/files_external/lib/Config/ConfigAdapter.php
+++ b/apps/files_external/lib/Config/ConfigAdapter.php
@@ -151,7 +151,8 @@ class ConfigAdapter implements IMountProvider {
'/' . $user->getUID() . '/files' . $storage->getMountPoint(),
null,
$loader,
- $storage->getMountOptions()
+ $storage->getMountOptions(),
+ $storage->getId()
);
$mounts[$storage->getMountPoint()] = $mount;
}