I'm making a WebRTC app with multiple connections. I've been having trouble with deleting the connections from chrome://webrtc-internals/ using the .close() method alone, so I looked on StackOverflow for a similar problem and saw someone recommend setting the connections to null as well. I did that, but I still saw the connections in chrome://webrtc-internals/. How can I fully delete these connections?
yourConn.close();
yourConn2.close();
yourConn3.close();
yourConn = null;
yourConn2 = null;
yourConn3 = null;