Browse Source

Allow an empty mount point

remotes/origin/db-empty-migrate
Robin McCorkell 10 years ago
parent
commit
1e2e5abe26
  1. 4
      apps/files_external/service/storagesservice.php

4
apps/files_external/service/storagesservice.php

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

Loading…
Cancel
Save