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. (cherry picked from commit 9339ea41962c5a8d8317eb973b25b7dc39b15843)
This commit is contained in:
parent
eef061485e
commit
2cbd57db40
@ -212,16 +212,17 @@ class ReaderViewModel(
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
else -> chapters
|
else -> chapters
|
||||||
}.run {
|
|
||||||
if (readerPreferences.skipDupe().get()) {
|
|
||||||
removeDuplicates(selectedChapter)
|
|
||||||
} else {
|
|
||||||
this
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
||||||
chaptersForReader
|
chaptersForReader
|
||||||
.sortedWith(getChapterSort(manga, sortDescending = false))
|
.sortedWith(getChapterSort(manga, sortDescending = false))
|
||||||
|
.run {
|
||||||
|
if (readerPreferences.skipDupe().get()) {
|
||||||
|
removeDuplicates(selectedChapter)
|
||||||
|
} else {
|
||||||
|
this
|
||||||
|
}
|
||||||
|
}
|
||||||
.map { it.toDbChapter() }
|
.map { it.toDbChapter() }
|
||||||
.map(::ReaderChapter)
|
.map(::ReaderChapter)
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user