Merge remote-tracking branch 'upstream/master'

pull/2250/head
Seidko 2 years ago
commit 036f69641d
  1. 16
      app/src/main/java/io/legado/app/model/AudioPlay.kt
  2. 2
      app/src/main/java/io/legado/app/ui/book/audio/AudioPlayViewModel.kt

@ -105,7 +105,7 @@ object AudioPlay {
book.durChapterIndex = index
book.durChapterPos = 0
durChapter = null
saveRead(book)
saveRead()
play(context)
}
}
@ -120,7 +120,7 @@ object AudioPlay {
book.durChapterIndex = book.durChapterIndex - 1
book.durChapterPos = 0
durChapter = null
saveRead(book)
saveRead()
play(context)
}
}
@ -134,17 +134,11 @@ object AudioPlay {
book.durChapterIndex = book.durChapterIndex + 1
book.durChapterPos = 0
durChapter = null
saveRead(book)
saveRead()
play(context)
}
}
fun addTimer() {
val intent = Intent(appCtx, AudioPlayService::class.java)
intent.action = IntentAction.addTimer
appCtx.startService(intent)
}
fun setTimer(minute: Int) {
val intent = Intent(appCtx, AudioPlayService::class.java)
intent.action = IntentAction.setTimer
@ -152,7 +146,8 @@ object AudioPlay {
appCtx.startService(intent)
}
fun saveRead(book: Book) {
fun saveRead() {
book?.let { book ->
book.lastCheckCount = 0
book.durChapterTime = System.currentTimeMillis()
Coroutine.async {
@ -164,6 +159,7 @@ object AudioPlay {
book.save()
}
}
}
/**
* 保存章节长度

@ -37,9 +37,9 @@ class AudioPlayViewModel(application: Application) : BaseViewModel(application)
loadChapterList(book)
}
}
saveRead(book)
}
}
saveRead()
}
}

Loading…
Cancel
Save