mirror of
https://github.com/mihonapp/mihon.git
synced 2024-11-07 20:31:02 -05:00
Follow chapter sort setting for start/resume FAB (closes #1716)
This commit is contained in:
parent
ef5148ebb4
commit
f7cc36f2f0
1 changed files with 1 additions and 1 deletions
|
@ -474,7 +474,7 @@ class MangaPresenter(
|
|||
* Returns the next unread chapter or null if everything is read.
|
||||
*/
|
||||
fun getNextUnreadChapter(): ChapterItem? {
|
||||
return chapters.sortedByDescending { it.source_order }.find { !it.read }
|
||||
return chapters.sortedWith(getChapterSort()).findLast { !it.read }
|
||||
}
|
||||
|
||||
/**
|
||||
|
|
Loading…
Reference in a new issue