This commit is contained in:
kunfei
2022-03-30 08:15:37 +08:00
parent e5fc3250df
commit cecf733c77

View File

@@ -58,7 +58,7 @@ class ImportBookViewModel(application: Application) : BaseViewModel(application)
}.map { docList ->
when (sort) {
2 -> docList.sortedWith(
compareBy({ !it.isDir }, { it.lastModified }, { it.name })
compareBy({ !it.isDir }, { -it.lastModified }, { it.name })
)
1 -> docList.sortedWith(
compareBy({ !it.isDir }, { it.size }, { it.name })