fixing typo on audio upload

This commit is contained in:
balzack 2025-01-19 22:47:47 -08:00
parent a0150e5ce3
commit 16a72fbec7

View File

@ -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}` } };