Skip to content

Commit 3d9c47f

Browse files
authored
Merge pull request #60827 from nextcloud/fix/search-sort-apps-first
fix(AppSearch): Always sort apps first for search
2 parents fe12dc2 + 7e2e9ec commit 3d9c47f

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

apps/appstore/lib/Search/AppSearch.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -37,7 +37,7 @@ public function getName(): string {
3737

3838
#[\Override]
3939
public function getOrder(string $route, array $routeParameters): int {
40-
return $route === 'appstore.Page.viewApps' ? -50 : 100;
40+
return -50;
4141
}
4242

4343
#[\Override]

0 commit comments

Comments
 (0)