diff options
author | Robin Appelman <robin@icewind.nl> | 2017-02-10 13:29:18 +0100 |
---|---|---|
committer | Robin Appelman <robin@icewind.nl> | 2017-03-23 14:03:22 +0100 |
commit | 76d8699c0f3678ee77879831229832557b7f0ec8 (patch) | |
tree | 987c99fd9b353aa44e8236b33dbbb197f5113f88 /apps/files_external/lib/Controller | |
parent | f38d36a16167041da7bf528d3822d3ab30c93c1f (diff) | |
download | nextcloud-server-76d8699c0f3678ee77879831229832557b7f0ec8.tar.gz nextcloud-server-76d8699c0f3678ee77879831229832557b7f0ec8.zip |
Allow using '/' as external storage root
Signed-off-by: Robin Appelman <robin@icewind.nl>
Diffstat (limited to 'apps/files_external/lib/Controller')
-rw-r--r-- | apps/files_external/lib/Controller/StoragesController.php | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/apps/files_external/lib/Controller/StoragesController.php b/apps/files_external/lib/Controller/StoragesController.php index ef7cc8c6e4f..d962848bd78 100644 --- a/apps/files_external/lib/Controller/StoragesController.php +++ b/apps/files_external/lib/Controller/StoragesController.php @@ -143,7 +143,7 @@ abstract class StoragesController extends Controller { */ protected function validate(StorageConfig $storage) { $mountPoint = $storage->getMountPoint(); - if ($mountPoint === '' || $mountPoint === '/') { + if ($mountPoint === '') { return new DataResponse( array( 'message' => (string)$this->l10n->t('Invalid mount point') |