Skip to content

Commit

Permalink
bump version
Browse files Browse the repository at this point in the history
  • Loading branch information
nonproto committed Jun 27, 2024
1 parent b406941 commit 97f302f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app/build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -23,8 +23,8 @@ android {
minSdk = AndroidConfig.minSdkVersion
targetSdk = AndroidConfig.targetSdkVersion
applicationId = "org.nekomanga.neko"
versionCode = 8
versionName = "2.16.7"
versionCode = 9
versionName = "2.16.9"
testInstrumentationRunner = "androidx.test.runner.AndroidJUnitRunner"
multiDexEnabled = true
setProperty("archivesBaseName", "Neko")
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -858,9 +858,9 @@ class ReaderViewModel(
@ColorInt bg: Int
) {
viewModelScope.launchNonCancellable {
if (firstPage.status != Page.State.READY) return@launch
if (secondPage.status != Page.State.READY) return@launch
val manga = manga ?: return@launch
if (firstPage.status != Page.State.READY) return@launchNonCancellable
if (secondPage.status != Page.State.READY) return@launchNonCancellable
val manga = manga ?: return@launchNonCancellable
val context = Injekt.get<Application>()

val notifier = SaveImageNotifier(context)
Expand Down

0 comments on commit 97f302f

Please sign in to comment.