mirror of
https://github.com/nextcloud/server.git
synced 2026-06-12 10:10:49 -04:00
Fix undefined offset warning when using '/' as external storage root
Signed-off-by: Robin Appelman <robin@icewind.nl>
This commit is contained in:
parent
1995c69928
commit
c83232adae
1 changed files with 1 additions and 1 deletions
|
|
@ -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);
|
||||
|
|
|
|||
Loading…
Reference in a new issue