Sort chapters properly for update notifactions

This commit is contained in:
Jay 2020-02-10 21:10:54 -08:00
parent fb2ab7d765
commit eddfeff146

View File

@ -358,7 +358,7 @@ class LibraryUpdateService(
val newChapters = syncChaptersWithSource(db, fetchedChapters, manga, source).first val newChapters = syncChaptersWithSource(db, fetchedChapters, manga, source).first
if (newChapters.isNotEmpty()) { if (newChapters.isNotEmpty()) {
if (downloadNew && (categoriesToDownload.isEmpty() || manga.category in categoriesToDownload)) { if (downloadNew && (categoriesToDownload.isEmpty() || manga.category in categoriesToDownload)) {
downloadChapters(manga, newChapters) downloadChapters(manga, newChapters.sortedBy { it.chapter_number })
hasDownloads = true hasDownloads = true
} }
newUpdates.add(manga to newChapters.toTypedArray()) newUpdates.add(manga to newChapters.toTypedArray())