diff --git a/src/utils/webrtc/models/CallParticipantModel.js b/src/utils/webrtc/models/CallParticipantModel.js index 171488edd33..557b1dfd42e 100644 --- a/src/utils/webrtc/models/CallParticipantModel.js +++ b/src/utils/webrtc/models/CallParticipantModel.js @@ -226,10 +226,6 @@ CallParticipantModel.prototype = { return } - if (label !== 'status' && label !== 'JanusDataChannel') { - return - } - if (data.type === 'speaking') { this.set('speaking', true) } else if (data.type === 'stoppedSpeaking') { diff --git a/src/utils/webrtc/webrtc.js b/src/utils/webrtc/webrtc.js index b5a45d34183..2d35f78de04 100644 --- a/src/utils/webrtc/webrtc.js +++ b/src/utils/webrtc/webrtc.js @@ -1608,7 +1608,7 @@ export default function initWebRtc(signaling, _callParticipantCollection, _local console.debug('Unknown message type %s from %s datachannel', data.type, label, data, peer.id, peer) } } else { - console.debug('Unknown message from %s datachannel', label, data, peer.id, peer) + console.debug('Unknown message type %s from %s datachannel', data.type, label, data, peer.id, peer) } })