@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.
@@ -10198,7 +10198,7 @@ var createSession = function (options) {
10198
10198
  mediaProviders: Object.keys(MediaProvider),
10199
10199
  keepAlive: keepAlive,
10200
10200
  authToken:authToken,
10201
- clientVersion: "2.0.215",
10201
+ clientVersion: "2.0.216",
10202
10202
  clientOSVersion: window.navigator.appVersion,
10203
10203
  clientBrowserVersion: window.navigator.userAgent,
10204
10204
  msePacketizationVersion: 2,
@@ -13748,6 +13748,9 @@ const Browser = {
13748
13748
  },
13749
13749
  isAndroidFirefox: function () {
13750
13750
  return this.isAndroid() && /Firefox/i.test(navigator.userAgent);
13751
+ },
13752
+ isChromiumEdge: function () {
13753
+ return /Chrome/i.test(navigator.userAgent) && /Edg/i.test(navigator.userAgent);
13751
13754
  }
13752
13755
  };
13753
13756