Przeglądaj źródła

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

Vesnyx 7 lat temu
rodzic
commit
ea32ea11f2

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