Finish basic ptt implemenation

This commit is contained in:
Robert Long 2022-04-28 17:44:50 -07:00
commit 363f2340a0
9 changed files with 350 additions and 45 deletions

View file

@ -77,18 +77,15 @@ export function GroupCallView({
if (groupCall.isPtt) {
return (
<PTTCallView
client={client}
roomId={roomId}
roomName={groupCall.room.name}
groupCall={groupCall}
participants={participants}
client={client}
roomName={groupCall.room.name}
microphoneMuted={microphoneMuted}
toggleMicrophoneMuted={toggleMicrophoneMuted}
userMediaFeeds={userMediaFeeds}
activeSpeaker={activeSpeaker}
onLeave={onLeave}
setShowInspector={onChangeShowInspector}
showInspector={showInspector}
roomId={roomId}
/>
);
} else {