Sort chapters properly for update notifactions

pull/2788/head
Jay 5 years ago
parent fb2ab7d765
commit eddfeff146

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

Loading…
Cancel
Save