Skip to content

Commit

Permalink
Fix search when using upper case
Browse files Browse the repository at this point in the history
  • Loading branch information
javiersantos committed Jul 17, 2015
1 parent e4bbdf0 commit aaf66ae
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -305,7 +305,7 @@ public boolean onQueryTextChange(String search) {
if (search.isEmpty()) {
((AppAdapter) recyclerView.getAdapter()).getFilter().filter("");
} else {
((AppAdapter) recyclerView.getAdapter()).getFilter().filter(search);
((AppAdapter) recyclerView.getAdapter()).getFilter().filter(search.toLowerCase());
}

return false;
Expand Down

0 comments on commit aaf66ae

Please sign in to comment.