This commit is contained in:
Horis
2025-12-06 22:46:28 +08:00
parent 4d7cb5c8b4
commit 083cb297b7
@@ -270,11 +270,13 @@ object AudioPlay : CoroutineScope by MainScope() {
fun skipTo(index: Int) {
Coroutine.async {
stopPlay()
durChapterIndex = index
durChapterPos = 0
durPlayUrl = ""
saveRead()
loadPlayUrl()
if (index in 0..<simulatedChapterSize) {
durChapterIndex = index
durChapterPos = 0
durPlayUrl = ""
saveRead()
loadPlayUrl()
}
}
}