fix: 综合排序

This commit is contained in:
adhu2018
2024-04-28 01:01:58 +08:00
parent 821736679b
commit 83c0dab0b5
@@ -148,6 +148,11 @@ class BookshelfFragment2() : BaseBookshelfFragment(R.layout.fragment_bookshelf2)
3 -> list.sortedBy {
it.order
}
4 -> list.sortedByDescending {
max(it.latestChapterTime, it.durChapterTime)
}
else -> list.sortedByDescending {
it.durChapterTime
}