From: Robin Appelman Date: Mon, 14 Jul 2014 16:32:45 +0000 (+0200) Subject: Use the correct path when building the FileInfo for the search result X-Git-Tag: v8.0.0alpha1~1102^2 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=c3991ae13e728056c28a59468bcabbedbcfd01b3;p=nextcloud-server.git Use the correct path when building the FileInfo for the search result --- diff --git a/lib/private/files/view.php b/lib/private/files/view.php index 2af693d5a64..e08cb20f73d 100644 --- a/lib/private/files/view.php +++ b/lib/private/files/view.php @@ -1103,8 +1103,9 @@ class View { foreach ($results as $result) { if (substr($mountPoint . $result['path'], 0, $rootLength + 1) === $this->fakeRoot . '/') { $internalPath = $result['path']; + $path = $mountPoint . $result['path']; $result['path'] = substr($mountPoint . $result['path'], $rootLength); - $files[] = new FileInfo($mountPoint . $result['path'], $storage, $internalPath, $result); + $files[] = new FileInfo($path, $storage, $internalPath, $result); } }