feat(ui-flow): join-voice-listen IPC for lurker voice audience (Phase 72)

Dispatches platform.joinVoiceListenOnly so lurkers can enter voice
channels without attempting a full transmit join.

Co-authored-by: Cursor <[email protected]>
This commit is contained in:
Raven Scott
2026-05-22 02:10:42 -04:00
co-authored by Cursor
parent fa6079a4b6
commit 13df195776
+5
View File
@@ -159,6 +159,11 @@ async function dispatchUiMessage (platform, msg, hooks = {}) {
pushState()
return true
}
if (t === 'join-voice-listen') {
await platform.joinVoiceListenOnly(msg.channelId)
pushState()
return true
}
if (t === 'leave-voice') {
await platform.leaveVoiceChannel()
pushState()