diff --git a/src/Socket/chats.ts b/src/Socket/chats.ts index 342c1b3..634ccc1 100644 --- a/src/Socket/chats.ts +++ b/src/Socket/chats.ts @@ -389,7 +389,10 @@ export const makeChatsSocket = (config: SocketConfig) => { to: toJid, }, content: [ - { tag: type, attrs: { } } + { + tag: type === 'recording' ? 'composing' : type, + attrs: type === 'recording' ? { media : 'audio' } : {} + } ] }) }