mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 11:17:25 +01:00
Perform mark as read action in IO coroutine scope to avoid freezing app
This commit is contained in:
parent
10272ef395
commit
79bc1290ae
@ -18,6 +18,7 @@ import eu.kanade.tachiyomi.source.SourceManager
|
|||||||
import eu.kanade.tachiyomi.ui.main.MainActivity
|
import eu.kanade.tachiyomi.ui.main.MainActivity
|
||||||
import eu.kanade.tachiyomi.ui.manga.MangaController
|
import eu.kanade.tachiyomi.ui.manga.MangaController
|
||||||
import eu.kanade.tachiyomi.ui.reader.ReaderActivity
|
import eu.kanade.tachiyomi.ui.reader.ReaderActivity
|
||||||
|
import eu.kanade.tachiyomi.util.lang.launchIO
|
||||||
import eu.kanade.tachiyomi.util.storage.DiskUtil
|
import eu.kanade.tachiyomi.util.storage.DiskUtil
|
||||||
import eu.kanade.tachiyomi.util.storage.getUriCompat
|
import eu.kanade.tachiyomi.util.storage.getUriCompat
|
||||||
import eu.kanade.tachiyomi.util.system.notificationManager
|
import eu.kanade.tachiyomi.util.system.notificationManager
|
||||||
@ -170,16 +171,22 @@ class NotificationReceiver : BroadcastReceiver() {
|
|||||||
val preferences: PreferencesHelper = Injekt.get()
|
val preferences: PreferencesHelper = Injekt.get()
|
||||||
val sourceManager: SourceManager = Injekt.get()
|
val sourceManager: SourceManager = Injekt.get()
|
||||||
|
|
||||||
chapterUrls.mapNotNull { db.getChapter(it, mangaId).executeAsBlocking() }
|
launchIO {
|
||||||
.forEach {
|
chapterUrls.mapNotNull { db.getChapter(it, mangaId).executeAsBlocking() }
|
||||||
it.read = true
|
.forEach {
|
||||||
db.updateChapterProgress(it).executeAsBlocking()
|
it.read = true
|
||||||
if (preferences.removeAfterMarkedAsRead()) {
|
db.updateChapterProgress(it).executeAsBlocking()
|
||||||
val manga = db.getManga(mangaId).executeAsBlocking() ?: return
|
if (preferences.removeAfterMarkedAsRead()) {
|
||||||
val source = sourceManager.get(manga.source) ?: return
|
val manga = db.getManga(mangaId).executeAsBlocking()
|
||||||
downloadManager.deleteChapters(listOf(it), manga, source)
|
if (manga != null) {
|
||||||
|
val source = sourceManager.get(manga.source)
|
||||||
|
if (source != null) {
|
||||||
|
downloadManager.deleteChapters(listOf(it), manga, source)
|
||||||
|
}
|
||||||
|
}
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
companion object {
|
companion object {
|
||||||
|
Loading…
Reference in New Issue
Block a user