mirror of
https://github.com/mihonapp/mihon.git
synced 2025-06-25 10:37:51 +02:00
Implemented review changes
Shorter UI text and >= date comparison instead of >
This commit is contained in:
@ -119,10 +119,8 @@ class HistoryPresenter : BasePresenter<HistoryController>() {
|
||||
}
|
||||
}
|
||||
Manga.SORTING_UPLOAD_DATE -> {
|
||||
val dateUpload = chapter.date_upload
|
||||
((currChapterIndex + 1) until chapters.size)
|
||||
.map { chapters[it] }
|
||||
.firstOrNull { it.date_upload > dateUpload }
|
||||
chapters.drop(currChapterIndex + 1)
|
||||
.firstOrNull { it.date_upload >= chapter.date_upload}
|
||||
}
|
||||
else -> throw NotImplementedError("Unknown sorting method")
|
||||
}
|
||||
|
Reference in New Issue
Block a user