@flashphoner/websdk 2.0.265 → 2.0.267

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.265
1
+ Web SDK - 2.0.267
2
2
 
3
3
  [Download builds](https://docs.flashphoner.com/display/WEBSDK2EN/Web+SDK+release+notes)
4
4
 
@@ -538,7 +538,7 @@ function getConstraints() {
538
538
 
539
539
  if (constraints.audio) {
540
540
  constraints.audio = {
541
- deviceId: $('#audioInput').val()
541
+ deviceId: {exact: $('#audioInput').val()}
542
542
  };
543
543
  if ($("#fec").is(':checked'))
544
544
  constraints.audio.fec = $("#fec").is(':checked');
@@ -219,7 +219,7 @@ const startStreamingCamera = function(session, screenStream) {
219
219
  frameRate: parseInt($('#cameraFps').val()),
220
220
  },
221
221
  audio: {
222
- deviceId: $('#audioInput').val()
222
+ deviceId: {exact: $('#audioInput').val()}
223
223
  }
224
224
  }
225
225
  }