mirror of
https://github.com/samsonjs/immich.git
synced 2026-04-27 15:07:45 +00:00
fix(server): person thumbnails not being queued during thumbnail generation (#9195)
use face id instead of asset id
This commit is contained in:
parent
b7d0bc16bb
commit
a0c43a2b5a
1 changed files with 1 additions and 1 deletions
|
|
@ -115,7 +115,7 @@ export class MediaService {
|
||||||
continue;
|
continue;
|
||||||
}
|
}
|
||||||
|
|
||||||
await this.personRepository.update({ id: person.id, faceAssetId: face.assetId });
|
await this.personRepository.update({ id: person.id, faceAssetId: face.id });
|
||||||
}
|
}
|
||||||
|
|
||||||
jobs.push({ name: JobName.GENERATE_PERSON_THUMBNAIL, data: { id: person.id } });
|
jobs.push({ name: JobName.GENERATE_PERSON_THUMBNAIL, data: { id: person.id } });
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue