@flashphoner/websdk 2.0.211 → 2.0.212

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.
@@ -10171,7 +10171,7 @@ var createSession = function (options) {
10171
10171
  mediaProviders: Object.keys(MediaProvider),
10172
10172
  keepAlive: keepAlive,
10173
10173
  authToken:authToken,
10174
- clientVersion: "2.0.211",
10174
+ clientVersion: "2.0.212",
10175
10175
  clientOSVersion: window.navigator.appVersion,
10176
10176
  clientBrowserVersion: window.navigator.userAgent,
10177
10177
  msePacketizationVersion: 2,
@@ -15320,6 +15320,8 @@ var playFirstVideo = function (display, isLocal, src) {
15320
15320
  var video = document.createElement('video');
15321
15321
  video.setAttribute("playsinline", "");
15322
15322
  video.setAttribute("webkit-playsinline", "");
15323
+ //Mute video tag to prevent local audio playback in Safari #WCS-3430
15324
+ video.muted = true;
15323
15325
  video.id = uuid_v1() + (isLocal ? LOCAL_CACHED_VIDEO : REMOTE_CACHED_VIDEO);
15324
15326
 
15325
15327
  //in WCS-1560 we removed video.play() call, because it triggers the “Unhandled Promise Rejection” exception in iOS Safari