From 45ecb629a1a644dfb6d3b3322cbb3d3cfdfc5a4d Mon Sep 17 00:00:00 2001 From: Mert <101130780+mertalev@users.noreply.github.com> Date: Sun, 25 Feb 2024 13:18:09 -0500 Subject: [PATCH] fix(server): storage template migration not working (#7414) add `withExif` --- server/src/domain/storage-template/storage-template.service.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/server/src/domain/storage-template/storage-template.service.ts b/server/src/domain/storage-template/storage-template.service.ts index d696982540..857d1df327 100644 --- a/server/src/domain/storage-template/storage-template.service.ts +++ b/server/src/domain/storage-template/storage-template.service.ts @@ -117,7 +117,7 @@ export class StorageTemplateService { return true; } const assetPagination = usePagination(JOBS_ASSET_PAGINATION_SIZE, (pagination) => - this.assetRepository.getAll(pagination), + this.assetRepository.getAll(pagination, { withExif: true }), ); const users = await this.userRepository.getList();