0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-21 00:52:43 -05:00

fix(server): fix person pagination when deleting (#6707)

fix person delete pagination
This commit is contained in:
Mert 2024-01-28 17:02:01 -05:00 committed by GitHub
parent f52994e8ca
commit 28806d03e3
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -258,7 +258,7 @@ export class PersonService {
private async deleteAllPeople() { private async deleteAllPeople() {
const personPagination = usePagination(JOBS_ASSET_PAGINATION_SIZE, (pagination) => const personPagination = usePagination(JOBS_ASSET_PAGINATION_SIZE, (pagination) =>
this.repository.getAll(pagination), this.repository.getAll({ ...pagination, skip: 0 }),
); );
for await (const people of personPagination) { for await (const people of personPagination) {