fix nightly?

This commit is contained in:
Austin Huang 2021-07-20 12:28:50 -04:00
parent 468e09de75
commit 8c3ec92649
No known key found for this signature in database
GPG Key ID: 84C23AA04587A91F
1 changed files with 1 additions and 1 deletions

View File

@ -47,7 +47,7 @@ class SearchFragmentViewModel(application: Application) : AppStateViewModel(appl
private val searchCallback: Debouncer.Callback<String> = object : Debouncer.Callback<String> {
override fun call(key: String) {
if (tempQuery == null) return
query.postValue(tempQuery)
query.postValue(tempQuery!!)
}
override fun onError(t: Throwable) {