From 0dad0315dda12ed7db005d0247c5f02e0eccdceb Mon Sep 17 00:00:00 2001 From: Basilisk-Dev Date: Sat, 20 Aug 2022 14:23:06 -0400 Subject: Issue #1991 - Remove console log stating TURNS is not supported Port of Mozilla bug 1383575 --- dom/media/PeerConnection.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'dom/media') diff --git a/dom/media/PeerConnection.js b/dom/media/PeerConnection.js index d2f098b1fa..77b7a58980 100644 --- a/dom/media/PeerConnection.js +++ b/dom/media/PeerConnection.js @@ -588,7 +588,7 @@ RTCPeerConnection.prototype = { throw new this._win.DOMException(msg + " - improper scheme: " + url.scheme, "SyntaxError"); } - if (url.scheme in { stuns:1, turns:1 }) { + if (url.scheme in { stuns:1 }) { this.logWarning(url.scheme.toUpperCase() + " is not yet supported."); } }); -- cgit v1.2.3