Fix off by 1 dates (fixes #6791)

This commit is contained in:
arkon
2022-03-24 18:49:00 -04:00
parent 8e332dba30
commit 5c0a43e8d6
3 changed files with 4 additions and 4 deletions

View File

@@ -66,7 +66,7 @@ class HistoryPresenter : BasePresenter<HistoryController>() {
.map { recents ->
val map = TreeMap<Date, MutableList<MangaChapterHistory>> { d1, d2 -> d2.compareTo(d1) }
val byDay = recents
.groupByTo(map, { it.history.last_read.toDateKey() })
.groupByTo(map) { it.history.last_read.toDateKey() }
byDay.flatMap { entry ->
val dateItem = DateSectionItem(entry.key, relativeTime, dateFormat)
entry.value.map { HistoryItem(it, dateItem) }

View File

@@ -84,7 +84,7 @@ class UpdatesPresenter : BasePresenter<UpdatesController>() {
.map { mangaChapters ->
val map = TreeMap<Date, MutableList<MangaChapter>> { d1, d2 -> d2.compareTo(d1) }
val byDay = mangaChapters
.groupByTo(map, { it.chapter.date_fetch.toDateKey() })
.groupByTo(map) { it.chapter.date_fetch.toDateKey() }
byDay.flatMap { entry ->
val dateItem = DateSectionItem(entry.key, relativeTime, dateFormat)
entry.value