Skip to content

Commit

Permalink
support legacy events
Browse files Browse the repository at this point in the history
  • Loading branch information
olofkallander committed Dec 11, 2024
1 parent d281da0 commit 2039d4d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion examples/simpleclient/src/main.ts
Original file line number Diff line number Diff line change
Expand Up @@ -209,7 +209,7 @@ function onDataChannelMessage(event: MessageEvent<any>)
console.log('Sent data channel message ' + JSON.stringify(pinMessage));
}
}
else if (message.type === 'UserMediaMap')
else if (message.type === 'UserMediaMap' || message.colibriClass === 'UserMediaMap')
{
/* var activeUsers = getAllUserMapSsrcs(message);
for (var v of videoElementsDiv.children)
Expand Down

0 comments on commit 2039d4d

Please sign in to comment.