Sort chapters properly for update notifactions
This commit is contained in:
parent
fb2ab7d765
commit
eddfeff146
1 changed files with 1 additions and 1 deletions
|
@ -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())
|
||||||
|
|
Reference in a new issue