mirror of
https://git.mihon.tech/mihonapp/mihon
synced 2024-11-23 13:45:43 +03:00
Fixed the wrong offset (#6704)
This commit is contained in:
parent
d06984e3a3
commit
592b9fedb9
1 changed files with 1 additions and 1 deletions
|
@ -152,7 +152,7 @@ class HistoryController :
|
|||
return
|
||||
}
|
||||
val adapter = adapter ?: return
|
||||
presenter.requestNext(adapter.itemCount, query)
|
||||
presenter.requestNext(adapter.itemCount - adapter.headerItems.size, query)
|
||||
}
|
||||
|
||||
override fun noMoreLoad(newItemsSize: Int) {}
|
||||
|
|
Loading…
Reference in a new issue