fix(server): queue android motion assets for transcoding (#17781)

This commit is contained in:
Mert
2025-04-23 07:03:28 -04:00
committed by GitHub
parent 2a95eccf6a
commit 92ac1193e6
4 changed files with 29 additions and 14 deletions
-2
View File
@@ -297,8 +297,6 @@ export class JobService extends BaseService {
if (asset.type === AssetType.VIDEO) {
jobs.push({ name: JobName.VIDEO_CONVERSION, data: item.data });
} else if (asset.livePhotoVideoId) {
jobs.push({ name: JobName.VIDEO_CONVERSION, data: { id: asset.livePhotoVideoId } });
}
await this.jobRepository.queueAll(jobs);