fix paths of searchByMime results on substorages

remotes/origin/ldap_group_count
Robin Appelman 12 years ago
parent 3fc809dfd8
commit 456ca0cf7d
  1. 5
      lib/private/files/view.php

@ -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);
}
}
}

Loading…
Cancel
Save