I am working on a Safari project and I am using adapter.js to better handle cross browser communication.
I am having an issue when I try to remove a stream for a particular user (PeerConnection), which is :
Error removing media track DOMException: Argument 1 of RTCPeerConnection.removeTrack does not implement interface RTCRtpSender
This happens on this line :
https://github.com/rtc-io/rtc-quickconnect/blob/master/index.js#L737
I get that RTCPeerConnection gets overriden by adapter.js, but is there a way this function can be re-implemented (removeStream) to better suit adapter.js ?
Thanks