diff options
-rw-r--r-- | apps/files_external/lib/config.php | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/apps/files_external/lib/config.php b/apps/files_external/lib/config.php index 91c33ef10a5..390f51bfa71 100644 --- a/apps/files_external/lib/config.php +++ b/apps/files_external/lib/config.php @@ -165,6 +165,8 @@ class OC_Mount_Config { foreach ($service->getAllStorages() as $storage) { $mountPoints[] = self::prepareMountPointEntry($storage, false); } + + return $mountPoints; } /** @@ -181,6 +183,8 @@ class OC_Mount_Config { foreach ($service->getAllStorages() as $storage) { $mountPoints[] = self::prepareMountPointEntry($storage, true); } + + return $mountPoints; } /** |