Albirew/tachiyomi
Archivé
1
0
Bifurcation 0

Fix crash on History tab when there is no next chapter (#6970)

Cette révision appartient à :
Andreas 2022-04-21 22:48:45 +02:00 révisé par GitHub
Parent b1f46ed830
révision a35995b898
Aucune clé n'a été trouvée pour cette signature dans la base de données
ID de la clé GPG: 4AEE18F83AFDEB23

Voir le fichier

@ -95,7 +95,9 @@ class HistoryPresenter(
fun getNextChapterForManga(mangaId: Long, chapterId: Long) {
presenterScope.launchIO {
val chapter = getNextChapterForManga.await(mangaId, chapterId)
view?.openChapter(chapter)
launchUI {
view?.openChapter(chapter)
}
}
}