Преглед на файлове

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

Andreas преди 2 години
родител
ревизия
a35995b898
променени са 1 файла, в които са добавени 3 реда и са изтрити 1 реда
  1. 3 1
      app/src/main/java/eu/kanade/tachiyomi/ui/recent/history/HistoryPresenter.kt

+ 3 - 1
app/src/main/java/eu/kanade/tachiyomi/ui/recent/history/HistoryPresenter.kt

@@ -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)
+            }
         }
     }