From 16a72fbec73b2200cc91129e033b641bd2b76042 Mon Sep 17 00:00:00 2001 From: balzack Date: Sun, 19 Jan 2025 22:47:47 -0800 Subject: [PATCH] fixing typo on audio upload --- app/client/mobile/src/conversation/useConversation.hook.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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}` } };