RTCMultiConnection icon indicating copy to clipboard operation
RTCMultiConnection copied to clipboard

peer.nativeClose is undefined?

Open nature-li opened this issue 5 years ago • 0 comments

if these code a bug? I think nativeClose is undefined. these code is in RTCPeerConnection.js:

` peer.nativeClose = peer.close; peer.close = function() { if (!peer) { return; } try { if (peer.nativeClose !== peer.close) { peer.nativeClose(); } } catch (e) {} peer = null; self.peer = null; };

this.peer = peer;`

nature-li avatar Mar 28 '19 11:03 nature-li