فهرست منبع

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

Alex 1 سال پیش
والد
کامیت
decfb9687b
1فایلهای تغییر یافته به همراه1 افزوده شده و 0 حذف شده
  1. 1 0
      server/src/infra/repositories/asset.repository.ts

+ 1 - 0
server/src/infra/repositories/asset.repository.ts

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