pull/2468/head
kunfei 2 years ago
parent 6e7d6a5a85
commit 678e6125dd
  1. 8
      app/src/main/java/io/legado/app/ui/book/search/SearchScope.kt

@ -120,8 +120,12 @@ data class SearchScope(private var scope: String) {
}
if (list.isEmpty()) {
scope = ""
stateLiveData.postValue(scope)
return appDb.bookSourceDao.allEnabled
appDb.bookSourceDao.allEnabled.let {
if (it.isNotEmpty()) {
stateLiveData.postValue(scope)
list.addAll(it)
}
}
}
return list.sortedBy { it.customOrder }
}

Loading…
Cancel
Save