Merge pull request #6946 from nextcloud/12-6574

[stable12] Fix undefined offset warning when using '/' as external storage root
This commit is contained in:
Morris Jobke 2017-10-25 14:33:20 +02:00 committed by GitHub
commit aab0c3f18e
1 changed files with 1 additions and 1 deletions

View File

@ -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);