1
0
Fork 0
mirror of https://github.com/immich-app/immich.git synced 2025-01-01 08:31:59 +00:00

fix(server): storage template migration not working (#7414)

add `withExif`
This commit is contained in:
Mert 2024-02-25 13:18:09 -05:00 committed by GitHub
parent 943105ea20
commit 45ecb629a1
No known key found for this signature in database
GPG key ID: B5690EEEBB952194

View file

@ -117,7 +117,7 @@ export class StorageTemplateService {
return true; return true;
} }
const assetPagination = usePagination(JOBS_ASSET_PAGINATION_SIZE, (pagination) => const assetPagination = usePagination(JOBS_ASSET_PAGINATION_SIZE, (pagination) =>
this.assetRepository.getAll(pagination), this.assetRepository.getAll(pagination, { withExif: true }),
); );
const users = await this.userRepository.getList(); const users = await this.userRepository.getList();