mirror of
https://github.com/gotson/komga.git
synced 2025-12-20 15:34:17 +01:00
fix(api): total item count incorrect for /me/authentication-activity
This commit is contained in:
parent
6b67484197
commit
a56c2f1d2d
1 changed files with 1 additions and 1 deletions
|
|
@ -44,7 +44,7 @@ class AuthenticationActivityDao(
|
|||
}
|
||||
|
||||
private fun findAll(conditions: Condition, pageable: Pageable): PageImpl<AuthenticationActivity> {
|
||||
val count = dsl.fetchCount(aa)
|
||||
val count = dsl.fetchCount(aa, conditions)
|
||||
|
||||
val orderBy = pageable.sort.toOrderBy(sorts)
|
||||
|
||||
|
|
|
|||
Loading…
Reference in a new issue