Skip to content

Commit

Permalink
version update
Browse files Browse the repository at this point in the history
  • Loading branch information
GrakovNe committed Dec 19, 2024
1 parent 75398e6 commit 77ad7a9
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 7 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -25,8 +25,8 @@ android {
applicationId = "org.grakovne.lissen"
minSdk = 28
targetSdk = 35
versionCode = 53
versionName = "1.1.22"
versionCode = 54
versionName = "1.1.23"

testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
vectorDrawables {
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class LibraryPageResponseConverter @Inject constructor() {
.mapNotNull {
val title = it.media.metadata.title ?: return@mapNotNull null

val hasMediaItems = it.media.numAudioFiles?.let { it > 0 } ?: true
val hasMediaItems = it.media.numAudioFiles?.let { it > 0 } ?: true
if (hasMediaItems.not()) {
return@mapNotNull null
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ class LibrarySearchItemsConverter @Inject constructor() {
.mapNotNull {
val title = it.media.metadata.title ?: return@mapNotNull null

val hasMediaItems = it.media.numAudioFiles?.let { it > 0 } ?: true
val hasMediaItems = it.media.numAudioFiles?.let { it > 0 } ?: true
if (hasMediaItems.not()) {
return@mapNotNull null
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ class PodcastPageResponseConverter @Inject constructor() {
.mapNotNull {
val title = it.media.metadata.title ?: return@mapNotNull null

val hasMediaItems = it.media.numAudioFiles?.let { it > 0 } ?: true
val hasMediaItems = it.media.numAudioFiles?.let { it > 0 } ?: true
if (hasMediaItems.not()) {
return@mapNotNull null
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ class PodcastSearchItemsConverter @Inject constructor() {
.mapNotNull {
val title = it.media.metadata.title ?: return@mapNotNull null

val hasMediaItems = it.media.numAudioFiles?.let { it > 0 } ?: true
val hasMediaItems = it.media.numAudioFiles?.let { it > 0 } ?: true
if (hasMediaItems.not()) {
return@mapNotNull null
}
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,6 @@ import dagger.hilt.android.qualifiers.ApplicationContext
import kotlinx.coroutines.flow.MutableStateFlow
import kotlinx.coroutines.flow.StateFlow
import kotlinx.coroutines.flow.asStateFlow
import kotlinx.coroutines.flow.distinctUntilChanged
import javax.inject.Inject
import javax.inject.Singleton

Expand Down

0 comments on commit 77ad7a9

Please sign in to comment.