diff --git a/app/client/mobile/src/conversation/useConversation.hook.ts b/app/client/mobile/src/conversation/useConversation.hook.ts index 61772e4d..b07cc8b1 100644 --- a/app/client/mobile/src/conversation/useConversation.hook.ts +++ b/app/client/mobile/src/conversation/useConversation.hook.ts @@ -234,7 +234,7 @@ export function useConversation() { ]}); return { encrypted: { type: 'audio', label: asset.label, parts: `ac${sources.length-1}` } }; } else { - sources.push({ type: AssetType.Video, source: asset.path, transforms: [ + sources.push({ type: AssetType.Audio, source: asset.path, transforms: [ { type: TransformType.Copy, appId: `ac${sources.length}` } ]}); return { audio: { label: asset.label, full: `ac${sources.length-1}` } };