Fixed the wrong offset (#6704)
(cherry picked from commit 592b9fedb969b3034d660d939ccf5c794e6fff56)
This commit is contained in:
parent
2273a50920
commit
7c2283c962
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