mirror of
https://github.com/immich-app/immich.git
synced 2024-12-28 22:51:59 +00:00
fix(server): missing asset files relation (#12295)
This commit is contained in:
parent
526cf23a9e
commit
c3a8ddaaf2
1 changed files with 1 additions and 1 deletions
|
@ -176,7 +176,7 @@ export class MediaService {
|
|||
async handleGeneratePreview({ id }: IEntityJob): Promise<JobStatus> {
|
||||
const [{ image }, [asset]] = await Promise.all([
|
||||
this.configCore.getConfig({ withCache: true }),
|
||||
this.assetRepository.getByIds([id], { exifInfo: true }),
|
||||
this.assetRepository.getByIds([id], { exifInfo: true, files: true }),
|
||||
]);
|
||||
if (!asset) {
|
||||
return JobStatus.FAILED;
|
||||
|
|
Loading…
Reference in a new issue