Skip to content

Commit

Permalink
Merge pull request #11669 from nextcloud/backport/11660/stable26
Browse files Browse the repository at this point in the history
[stable26] Ignore label of data channel when processing received messages.
  • Loading branch information
nickvergessen committed Feb 28, 2024
2 parents ffdc7e9 + 7f328a6 commit 8591ea3
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 22 deletions.
4 changes: 0 additions & 4 deletions src/utils/webrtc/models/CallParticipantModel.js
Expand Up @@ -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') {
Expand Down
32 changes: 14 additions & 18 deletions src/utils/webrtc/webrtc.js
Expand Up @@ -1590,25 +1590,21 @@ export default function initWebRtc(signaling, _callParticipantCollection, _local
})

webrtc.on('channelMessage', function(peer, label, data) {
if (label === 'status' || label === 'JanusDataChannel') {
if (data.type === 'audioOn') {
webrtc.emit('unmute', { id: peer.id, name: 'audio' })
} else if (data.type === 'audioOff') {
webrtc.emit('mute', { id: peer.id, name: 'audio' })
} else if (data.type === 'videoOn') {
webrtc.emit('unmute', { id: peer.id, name: 'video' })
} else if (data.type === 'videoOff') {
webrtc.emit('mute', { id: peer.id, name: 'video' })
} else if (data.type === 'nickChanged') {
const name = typeof (data.payload) === 'string' ? data.payload : data.payload.name
webrtc.emit('nick', { id: peer.id, name })
} else if (data.type === 'speaking' || data.type === 'stoppedSpeaking') {
// Valid known messages, but handled elsewhere
} else {
console.debug('Unknown message type %s from %s datachannel', data.type, label, data, peer.id, peer)
}
if (data.type === 'audioOn') {
webrtc.emit('unmute', { id: peer.id, name: 'audio' })
} else if (data.type === 'audioOff') {
webrtc.emit('mute', { id: peer.id, name: 'audio' })
} else if (data.type === 'videoOn') {
webrtc.emit('unmute', { id: peer.id, name: 'video' })
} else if (data.type === 'videoOff') {
webrtc.emit('mute', { id: peer.id, name: 'video' })
} else if (data.type === 'nickChanged') {
const name = typeof (data.payload) === 'string' ? data.payload : data.payload.name
webrtc.emit('nick', { id: peer.id, name })
} else if (data.type === 'speaking' || data.type === 'stoppedSpeaking') {
// Valid known messages, but handled elsewhere
} 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)
}
})

Expand Down

0 comments on commit 8591ea3

Please sign in to comment.