Process chapter duplicates after sorting

Closes #9255, sort of. The example is a bad edge case though, where chapter numbers are repeated across versions,
so realistically only the first 113 will appear but the later 113(s) won't despite being "different". Those realistically
should be in different manga entries, not all mixed together, so this is just a crappy source.
This commit is contained in:
arkon 2023-04-28 16:01:14 -04:00
parent 6bdc1b676e
commit 9339ea4196

View File

@ -172,16 +172,17 @@ class ReaderViewModel(
}
}
else -> chapters
}.run {
if (readerPreferences.skipDupe().get()) {
removeDuplicates(selectedChapter)
} else {
this
}
}
chaptersForReader
.sortedWith(getChapterSort(manga, sortDescending = false))
.run {
if (readerPreferences.skipDupe().get()) {
removeDuplicates(selectedChapter)
} else {
this
}
}
.map { it.toDbChapter() }
.map(::ReaderChapter)
}