fix: text not getting trimmed whilst searching
Signed-off-by: VishnuSanal <t.v.s10123@gmail.com>
This commit is contained in:
parent
86ca6d577e
commit
f5df22e45d
1 changed files with 1 additions and 1 deletions
|
@ -97,7 +97,7 @@ class SearchFragment : ListFragment<Music, FragmentSearchBinding>() {
|
||||||
binding.searchEditText.apply {
|
binding.searchEditText.apply {
|
||||||
addTextChangedListener { text ->
|
addTextChangedListener { text ->
|
||||||
// Run the search with the updated text as the query
|
// Run the search with the updated text as the query
|
||||||
searchModel.search(text?.toString())
|
searchModel.search(text?.toString()?.trim())
|
||||||
}
|
}
|
||||||
|
|
||||||
if (!launchedKeyboard) {
|
if (!launchedKeyboard) {
|
||||||
|
|
Loading…
Reference in a new issue