mirror of
https://github.com/nextcloud/server.git
synced 2026-05-28 04:32:30 -04:00
Only let the infinite handler fetch more results if the limit is hit
Signed-off-by: Julius Härtl <jus@bitgrid.net>
This commit is contained in:
parent
915d437512
commit
bde4977288
1 changed files with 2 additions and 2 deletions
|
|
@ -220,7 +220,7 @@ const actions = {
|
|||
.then((response) => {
|
||||
if (Object.keys(response.data.ocs.data.users).length > 0) {
|
||||
context.commit('appendUsers', response.data.ocs.data.users)
|
||||
return true
|
||||
return Object.keys(response.data.ocs.data.users).length === limit
|
||||
}
|
||||
return false
|
||||
})
|
||||
|
|
@ -237,7 +237,7 @@ const actions = {
|
|||
.then((response) => {
|
||||
if (Object.keys(response.data.ocs.data.users).length > 0) {
|
||||
context.commit('appendUsers', response.data.ocs.data.users)
|
||||
return true
|
||||
return Object.keys(response.data.ocs.data.users).length === limit
|
||||
}
|
||||
return false
|
||||
})
|
||||
|
|
|
|||
Loading…
Reference in a new issue