From c83232adae1f135c2cf121a49528f7c21ea35479 Mon Sep 17 00:00:00 2001 From: Robin Appelman Date: Tue, 19 Sep 2017 17:18:04 +0200 Subject: [PATCH] Fix undefined offset warning when using '/' as external storage root Signed-off-by: Robin Appelman --- apps/files_external/lib/Lib/Api.php | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/files_external/lib/Lib/Api.php b/apps/files_external/lib/Lib/Api.php index 82dd377cd1..6b10443bbd 100644 --- a/apps/files_external/lib/Lib/Api.php +++ b/apps/files_external/lib/Lib/Api.php @@ -39,7 +39,7 @@ class Api { private static function formatMount($mountPoint, $mountConfig) { // strip "/$user/files" from mount point $mountPoint = explode('/', trim($mountPoint, '/'), 3); - $mountPoint = $mountPoint[2]; + $mountPoint = isset($mountPoint[2]) ? $mountPoint[2] : ''; // split path from mount point $path = dirname($mountPoint);