Fix reader chapter sort ordering (fixes #5157)

This commit is contained in:
arkon
2021-05-23 14:25:40 -04:00
parent 986b709f2c
commit 065cf42aea
2 changed files with 2 additions and 4 deletions

View File

@@ -125,7 +125,7 @@ class ReaderPresenter(
}
chaptersForReader
.sortedWith(getChapterSort(manga))
.sortedWith(getChapterSort(manga, sortDescending = false))
.map(::ReaderChapter)
}