- From: jan-ivar via GitHub <sysbot+gh@w3.org>
- Date: Thu, 08 Mar 2018 04:27:18 +0000
- To: public-webrtc-logs@w3.org
I think you mean this case (assuming live tracks in both direction): ```js await pc1.setLocalDescription(await pc1.createOffer()); await pc2.setRemoteDescription(pc1.localDescription); pc2.getTransceivers()[0].direction = "inactive"; await pc2.setLocalDescription(await pc2.createAnswer()); await pc1.setRemoteDescription(pc2.localDescription); ``` When I run [this](https://jsfiddle.net/jib1/s4o9ykdL/) in Firefox 59 I get: ``` pc1's received track removed pc1's received track muted ``` ...but not on pc2. -- GitHub Notification of comment by jan-ivar Please view or discuss this issue at https://github.com/w3c/webrtc-pc/issues/1778#issuecomment-371374987 using your GitHub account
Received on Thursday, 8 March 2018 04:27:23 UTC