Selaa lähdekoodia

Consider sort direction when resuming (fixes #4909)

arkon 4 vuotta sitten
vanhempi
commit
8882cd4787

+ 6 - 1
app/src/main/java/eu/kanade/tachiyomi/ui/manga/MangaPresenter.kt

@@ -474,7 +474,12 @@ class MangaPresenter(
      * Returns the next unread chapter or null if everything is read.
      */
     fun getNextUnreadChapter(): ChapterItem? {
-        return chapters.sortedWith(getChapterSort()).findLast { !it.read }
+        val chapters = chapters.sortedWith(getChapterSort())
+        return if (sortDescending()) {
+            return chapters.findLast { !it.read }
+        } else {
+            chapters.find { !it.read }
+        }
     }
 
     /**