@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.
package/flashphoner.js CHANGED
@@ -11665,7 +11665,7 @@ var createSession = function createSession(options) {
11665
11665
  mediaProviders: Object.keys(MediaProvider),
11666
11666
  keepAlive: keepAlive,
11667
11667
  authToken: authToken,
11668
- clientVersion: "2.0.215",
11668
+ clientVersion: "2.0.216",
11669
11669
  clientOSVersion: window.navigator.appVersion,
11670
11670
  clientBrowserVersion: window.navigator.userAgent,
11671
11671
  msePacketizationVersion: 2,
@@ -14318,6 +14318,9 @@ var Browser = {
14318
14318
  },
14319
14319
  isAndroidFirefox: function isAndroidFirefox() {
14320
14320
  return this.isAndroid() && /Firefox/i.test(navigator.userAgent);
14321
+ },
14322
+ isChromiumEdge: function isChromiumEdge() {
14323
+ return /Chrome/i.test(navigator.userAgent) && /Edg/i.test(navigator.userAgent);
14321
14324
  }
14322
14325
  };
14323
14326
  var SDP = {