Allow an empty mount point

This commit is contained in:
Robin McCorkell 2015-08-31 13:23:23 +01:00
parent 65784227d6
commit 1e2e5abe26
1 changed files with 2 additions and 2 deletions

View File

@ -172,7 +172,7 @@ abstract class StoragesService {
// the root mount point is in the format "/$user/files/the/mount/point"
// we remove the "/$user/files" prefix
$parts = explode('/', trim($rootMountPath, '/'), 3);
$parts = explode('/', ltrim($rootMountPath, '/'), 3);
if (count($parts) < 3) {
// something went wrong, skip
\OCP\Util::writeLog(
@ -183,7 +183,7 @@ abstract class StoragesService {
continue;
}
$relativeMountPath = $parts[2];
$relativeMountPath = rtrim($parts[2], '/');
// note: we cannot do this after the loop because the decrypted config
// options might be needed for the config hash