@flashphoner/websdk 2.0.215 → 2.0.216

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -9071,7 +9071,7 @@ var createSession = function createSession(options) {
9071
9071
  mediaProviders: Object.keys(MediaProvider),
9072
9072
  keepAlive: keepAlive,
9073
9073
  authToken: authToken,
9074
- clientVersion: "2.0.215",
9074
+ clientVersion: "2.0.216",
9075
9075
  clientOSVersion: window.navigator.appVersion,
9076
9076
  clientBrowserVersion: window.navigator.userAgent,
9077
9077
  msePacketizationVersion: 2,
@@ -11714,6 +11714,9 @@ var Browser = {
11714
11714
  },
11715
11715
  isAndroidFirefox: function isAndroidFirefox() {
11716
11716
  return this.isAndroid() && /Firefox/i.test(navigator.userAgent);
11717
+ },
11718
+ isChromiumEdge: function isChromiumEdge() {
11719
+ return /Chrome/i.test(navigator.userAgent) && /Edg/i.test(navigator.userAgent);
11717
11720
  }
11718
11721
  };
11719
11722
  var SDP = {