remove trailing slash from path
This commit is contained in:
parent
f451173817
commit
48c57b80e3
1 changed files with 2 additions and 1 deletions
|
@ -1388,7 +1388,8 @@ class Share extends \OC\Share\Constants {
|
|||
}
|
||||
if ($mounts[$row['storage']]) {
|
||||
$path = $mounts[$row['storage']]->getMountPoint().$row['path'];
|
||||
$row['path'] = substr($path, $root);
|
||||
$relPath = substr($path, $root); // path relative to data/user
|
||||
$row['path'] = rtrim($relPath, '/');
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in a new issue