[mirotalksfu] - update dep, fix typo

هذا الالتزام موجود في:
Miroslav Pejic
2022-07-10 08:12:30 +02:00
الأصل a6191fb83f
التزام 0e36e0db05
3 ملفات معدلة مع 137 إضافات و421 حذوفات

عرض الملف

@@ -207,7 +207,7 @@ function enumerateAudioDevices(stream) {
el = speakerSelect;
}
if (!el) return;
appenChild(device, el);
addChild(device, el);
}),
)
.then(() => {
@@ -228,7 +228,7 @@ function enumerateVideoDevices(stream) {
el = videoSelect;
}
if (!el) return;
appenChild(device, el);
addChild(device, el);
}),
)
.then(() => {
@@ -243,7 +243,7 @@ function stopTracks(stream) {
});
}
function appenChild(device, el) {
function addChild(device, el) {
let option = document.createElement('option');
option.value = device.deviceId;
option.innerText = device.label;