Please use Community Forum for general technical discussions and questions.
extra/renderer-and-libwebrtc-tests.js file).Note: If the checkboxes above are not checked (which you do after the issue is posted), the issue will be closed, removing this checkbox will result in automatic closed issue.
RTCPeerConnection.prototype.updateTransceiversState() maps through transceivers, assuming it to be list. However, the list is passed through as an object containing a list. Therefore .map() is undefined.

Start a WebRTC connection with audio and video tracks.
Should start the connection without issues.
transceiver.map() is undefined.
thx @ducile, Transceivers are only on master and we have couple of tests to perform before release 8.0.0.
I will make sure its fixed before release.
cc @agelito
@ducile is the fix simply to change this ?
- self.updateTransceiversState(update);
+ self.updateTransceiversState([update]);
No the fix would be to unwrap the underlying transceivers array. I've created a PR for you #662
Thx @ducile way to go.