@100mslive/hms-video-store 0.12.18-alpha.0 → 0.12.18
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/dist/index.cjs.js +1 -1
- package/dist/index.cjs.js.map +2 -2
- package/dist/index.js +1 -1
- package/dist/index.js.map +2 -2
- package/package.json +2 -2
- package/src/device-manager/DeviceManager.ts +1 -1
package/package.json
CHANGED
|
@@ -1,5 +1,5 @@
|
|
|
1
1
|
{
|
|
2
|
-
"version": "0.12.18
|
|
2
|
+
"version": "0.12.18",
|
|
3
3
|
"license": "MIT",
|
|
4
4
|
"repository": {
|
|
5
5
|
"type": "git",
|
|
@@ -73,5 +73,5 @@
|
|
|
73
73
|
"conferencing",
|
|
74
74
|
"100ms"
|
|
75
75
|
],
|
|
76
|
-
"gitHead": "
|
|
76
|
+
"gitHead": "66b20cd5cadc16107232710e32830df7a0685771"
|
|
77
77
|
}
|
|
@@ -247,7 +247,7 @@ export class DeviceManager implements HMSDeviceManager {
|
|
|
247
247
|
if (defaultDevice) {
|
|
248
248
|
// Selecting a non-default device so that the deviceId comparision does not give
|
|
249
249
|
// false positives when device is removed, because the other available device
|
|
250
|
-
//
|
|
250
|
+
// get's the deviceId as default once this device is removed
|
|
251
251
|
const nextDevice = this.audioInput.find(device => {
|
|
252
252
|
return device.deviceId !== 'default' && defaultDevice.label.includes(device.label);
|
|
253
253
|
});
|