fix: failing e2e tests

This commit is contained in:
bwees
2025-12-03 22:46:50 -06:00
parent 40326b434e
commit e144161d51
3 changed files with 5 additions and 2 deletions

View File

@@ -478,10 +478,11 @@ export class AssetRepository {
.selectAll('asset')
.$call(withExif)
.$call((qb) => qb.select(withFacesAndPeople))
.$call((qb) => qb.select(withEdits))
.executeTakeFirst();
}
return this.getById(asset.id, { exifInfo: true, faces: { person: true } });
return this.getById(asset.id, { exifInfo: true, faces: { person: true }, edits: true });
}
async remove(asset: { id: string }): Promise<void> {