فهرست منبع

Fixed marked previous as read not deleting chapters (#1283)

Vesnyx 7 سال پیش
والد
کامیت
ea32ea11f2
1فایلهای تغییر یافته به همراه1 افزوده شده و 1 حذف شده
  1. 1 1
      app/src/main/java/eu/kanade/tachiyomi/ui/manga/chapter/ChaptersController.kt

+ 1 - 1
app/src/main/java/eu/kanade/tachiyomi/ui/manga/chapter/ChaptersController.kt

@@ -387,7 +387,7 @@ class ChaptersController : NucleusController<ChaptersPresenter>(),
         val chapters = if (presenter.sortDescending()) adapter.items.reversed() else adapter.items
         val chapterPos = chapters.indexOf(chapter)
         if (chapterPos != -1) {
-            presenter.markChaptersRead(chapters.take(chapterPos), true)
+            markAsRead(chapters.take(chapterPos))
         }
     }