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;
}
const assetPagination = usePagination(JOBS_ASSET_PAGINATION_SIZE, (pagination) =>
this.assetRepository.getAll(pagination),
this.assetRepository.getAll(pagination, { withExif: true }),
);
const users = await this.userRepository.getList();