diff options
Diffstat (limited to 'apps/files_external/lib/config.php')
-rwxr-xr-x | apps/files_external/lib/config.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index f860d5e705f..934f9a69032 100755 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -111,7 +111,7 @@ class OC_Mount_Config { $objectClass = $options['options']['objectstore']['class']; $options['options']['objectstore'] = new $objectClass($options['options']['objectstore']); } - if ($options['personal']){ + if (isset($options['personal']) && $options['personal']) { $mount = new \OCA\Files_External\PersonalMount($options['class'], $mountPoint, $options['options'], $loader); } else{ $mount = new \OC\Files\Mount\Mount($options['class'], $mountPoint, $options['options'], $loader); |