fix(server): add exif info to memory response (#4550)

This commit is contained in:
Alex 2023-10-19 14:33:35 -05:00 committed by GitHub
parent 5e17b3199f
commit decfb9687b
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -97,6 +97,7 @@ export class AssetRepository implements IAssetRepository {
month,
},
)
.leftJoinAndSelect('entity.exifInfo', 'exifInfo')
.orderBy('entity.localDateTime', 'DESC')
.getMany();
}