fix paths of searchByMime results on substorages

This commit is contained in:
Robin Appelman 2014-04-25 12:31:44 +02:00
parent 3fc809dfd8
commit 456ca0cf7d
1 changed files with 3 additions and 2 deletions

View File

@ -1109,8 +1109,9 @@ class View {
if ($results) {
foreach ($results as $result) {
$internalPath = $result['path'];
$result['path'] = $relativeMountPoint . $result['path'];
$files[] = new FileInfo($mountPoint . $result['path'], $storage, $internalPath, $result);
$result['path'] = rtrim($relativeMountPoint . $result['path'], '/');
$path = rtrim($mountPoint . $internalPath, '/');
$files[] = new FileInfo($path, $storage, $internalPath, $result);
}
}
}