diff --git a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/search/SearchBarViewModel.kt b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/search/SearchBarViewModel.kt index 2f575690d..15aa74ace 100644 --- a/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/search/SearchBarViewModel.kt +++ b/amethyst/src/main/java/com/vitorpamplona/amethyst/ui/screen/loggedIn/search/SearchBarViewModel.kt @@ -74,8 +74,13 @@ class SearchBarViewModel( _searchResultsUsers.emit( LocalCache .findUsersStartingWith(searchValue) - .sortedWith(compareBy({ account.isFollowing(it) }, { it.toBestDisplayName() })) - .reversed(), + .sortedWith( + compareBy( + { it.toBestDisplayName().startsWith(searchValue, true) }, + { account.isFollowing(it) }, + { it.toBestDisplayName() }, + ), + ).reversed(), ) _searchResultsNotes.emit( LocalCache