only reset bestMatch when searchquery is empty

This commit is contained in:
Sir-Photch
2023-10-28 13:56:48 +02:00
parent aa0447de7a
commit 9f6f17b9b7
2 changed files with 5 additions and 3 deletions
@@ -104,7 +104,9 @@ class SearchVM : ViewModel(), KoinComponent {
searchQuery.value = query
isSearchEmpty.value = query.isEmpty()
hiddenResults.value = emptyList()
bestMatch.value = null
if (isSearchEmpty.value)
bestMatch.value = null
try {
searchJob?.cancel()