bump android build number to 28
This commit is contained in:
@ -17,8 +17,8 @@ android {
|
||||
applicationId "app.omnivore.omnivore"
|
||||
minSdk 26
|
||||
targetSdk 33
|
||||
versionCode 27
|
||||
versionName "0.0.27"
|
||||
versionCode 28
|
||||
versionName "0.0.28"
|
||||
|
||||
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
|
||||
vectorDrawables {
|
||||
|
||||
@ -51,6 +51,9 @@ class LibraryViewModel @Inject constructor(
|
||||
if (hasLoadedInitialFilters) { return }
|
||||
hasLoadedInitialFilters = false
|
||||
|
||||
// TODO: Fetch all labels
|
||||
|
||||
|
||||
runBlocking {
|
||||
datastoreRepo.getString(DatastoreKeys.lastUsedSavedItemFilter)?.let { str ->
|
||||
try {
|
||||
@ -152,7 +155,6 @@ class LibraryViewModel @Inject constructor(
|
||||
}
|
||||
|
||||
suspend fun handleFilterChanges() {
|
||||
librarySearchCursor = null
|
||||
if (searchTextLiveData.value != "") {
|
||||
performSearch(true)
|
||||
} else if (appliedSortFilterLiveData.value != null && appliedFilterLiveData.value != null) {
|
||||
|
||||
Reference in New Issue
Block a user