mirror of
https://github.com/SimpleMobileTools/Simple-Gallery.git
synced 2025-06-05 21:59:19 +02:00
properly handle grouping by some numeric values, like dates
This commit is contained in:
@ -324,7 +324,16 @@ class MediaFetcher(val context: Context) {
|
|||||||
}
|
}
|
||||||
|
|
||||||
val sortDescending = currentGrouping and GROUP_DESCENDING != 0
|
val sortDescending = currentGrouping and GROUP_DESCENDING != 0
|
||||||
val sorted = mediumGroups.toSortedMap(if (sortDescending) compareByDescending { it } else compareBy { it })
|
val sorted = if (currentGrouping and GROUP_BY_DATE_TAKEN != 0 || currentGrouping and GROUP_BY_LAST_MODIFIED != 0) {
|
||||||
|
mediumGroups.toSortedMap(if (sortDescending) compareByDescending {
|
||||||
|
it.toLongOrNull() ?: 0L
|
||||||
|
} else {
|
||||||
|
compareBy { it.toLongOrNull() ?: 0L }
|
||||||
|
})
|
||||||
|
} else {
|
||||||
|
mediumGroups.toSortedMap(if (sortDescending) compareByDescending { it } else compareBy { it })
|
||||||
|
}
|
||||||
|
|
||||||
mediumGroups.clear()
|
mediumGroups.clear()
|
||||||
for ((key, value) in sorted) {
|
for ((key, value) in sorted) {
|
||||||
mediumGroups[key] = value
|
mediumGroups[key] = value
|
||||||
|
Reference in New Issue
Block a user