From 2b2a34175f893b7ed65e3dc7434e9b3f420adf46 Mon Sep 17 00:00:00 2001 From: Boris Grozev Date: Mon, 14 Dec 2015 13:43:05 -0600 Subject: [PATCH] Adds a missing require. --- modules/xmpp/SDPUtil.js | 2 ++ 1 file changed, 2 insertions(+) diff --git a/modules/xmpp/SDPUtil.js b/modules/xmpp/SDPUtil.js index e0d2f5d25..3a15d2f3c 100644 --- a/modules/xmpp/SDPUtil.js +++ b/modules/xmpp/SDPUtil.js @@ -1,4 +1,6 @@ /* jshint -W101 */ +var RTCBrowserType = require("../RTC/RTCBrowserType"); + var SDPUtil = { filter_special_chars: function (text) { return text.replace(/[\\\/\{,\}\+]/g, "");