浏览代码

Downloading chapters now always add them from the beginning

len 8 年之前
父节点
当前提交
46cc078e93
共有 1 个文件被更改,包括 4 次插入1 次删除
  1. 4 1
      app/src/main/java/eu/kanade/tachiyomi/data/download/DownloadManager.kt

+ 4 - 1
app/src/main/java/eu/kanade/tachiyomi/data/download/DownloadManager.kt

@@ -111,11 +111,14 @@ class DownloadManager(private val context: Context, private val sourceManager: S
     fun downloadChapters(manga: Manga, chapters: List<Chapter>) {
         val source = sourceManager.get(manga.source) as? OnlineSource ?: return
 
+        // Add chapters to queue from the start
+        val sortedChapters = chapters.sortedByDescending { it.source_order }
+
         // Used to avoid downloading chapters with the same name
         val addedChapters = ArrayList<String>()
         val pending = ArrayList<Download>()
 
-        for (chapter in chapters) {
+        for (chapter in sortedChapters) {
             if (addedChapters.contains(chapter.name))
                 continue