Merge pull request #23611 from nextcloud/backport/23606/stable20

[stable20] Only use index of mount point when it is there
This commit is contained in:
Roeland Jago Douma 2020-10-24 10:53:45 +02:00 committed by GitHub
commit 0b46ebe3c6
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 5 additions and 1 deletions

View File

@ -545,7 +545,11 @@ class OC_Helper {
if ($owner) {
$ownerDisplayName = $owner->getDisplayName();
}
[,,,$mountPoint] = explode('/', $mount->getMountPoint(), 4);
if (substr_count($mount->getMountPoint(), '/') < 3) {
$mountPoint = '';
} else {
[,,,$mountPoint] = explode('/', $mount->getMountPoint(), 4);
}
return [
'free' => $free,