mirror of
https://github.com/nextcloud/server.git
synced 2026-06-07 15:53:04 -04:00
Merge pull request #45790 from nextcloud/backport/45781/stable28
[stable28] fix(search): tags redirect route
This commit is contained in:
commit
9db32d1ef6
1 changed files with 3 additions and 3 deletions
|
|
@ -138,9 +138,9 @@ class TagSearchProvider implements IProvider {
|
|||
// prepare direct tag results
|
||||
$tagResults = array_map(function (ISystemTag $tag) {
|
||||
$thumbnailUrl = '';
|
||||
$link = $this->urlGenerator->linkToRoute(
|
||||
'files.view.index'
|
||||
) . '?view=systemtagsfilter&tags='.$tag->getId();
|
||||
$link = $this->urlGenerator->linkToRoute('files.view.indexView', [
|
||||
'view' => 'tags',
|
||||
]) . '?dir='.$tag->getId();
|
||||
$searchResultEntry = new SearchResultEntry(
|
||||
$thumbnailUrl,
|
||||
$this->l10n->t('All tagged %s …', [$tag->getName()]),
|
||||
|
|
|
|||
Loading…
Reference in a new issue