@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.
@@ -1,4 +1,4 @@
1
- Web SDK - 2.0.215
1
+ Web SDK - 2.0.216
2
2
 
3
3
  [Download builds](https://docs.flashphoner.com/display/WEBSDK2EN/Web+SDK+release+notes)
4
4
 
@@ -10174,7 +10174,7 @@ var createSession = function createSession(options) {
10174
10174
  mediaProviders: Object.keys(MediaProvider),
10175
10175
  keepAlive: keepAlive,
10176
10176
  authToken: authToken,
10177
- clientVersion: "2.0.215",
10177
+ clientVersion: "2.0.216",
10178
10178
  clientOSVersion: window.navigator.appVersion,
10179
10179
  clientBrowserVersion: window.navigator.userAgent,
10180
10180
  msePacketizationVersion: 2,
@@ -12827,6 +12827,9 @@ var Browser = {
12827
12827
  },
12828
12828
  isAndroidFirefox: function isAndroidFirefox() {
12829
12829
  return this.isAndroid() && /Firefox/i.test(navigator.userAgent);
12830
+ },
12831
+ isChromiumEdge: function isChromiumEdge() {
12832
+ return /Chrome/i.test(navigator.userAgent) && /Edg/i.test(navigator.userAgent);
12830
12833
  }
12831
12834
  };
12832
12835
  var SDP = {