I'm dumb again

This commit is contained in:
Grishka 2022-04-19 07:58:38 +03:00
parent b57df8e175
commit 957f3a2afd
1 changed files with 1 additions and 1 deletions

View File

@ -335,7 +335,7 @@ public class InstanceCatalogFragment extends BaseRecyclerFragment<CatalogInstanc
private boolean onSearchEnterPressed(TextView v, int actionId, KeyEvent event){
if(event!=null && event.getAction()!=KeyEvent.ACTION_DOWN)
return true;
currentSearchQuery=searchEdit.getText().toString().toUpperCase();
currentSearchQuery=searchEdit.getText().toString().toLowerCase();
updateFilteredList();
searchEdit.removeCallbacks(searchDebouncer);
Instance instance=instancesCache.get(currentSearchQuery);