1
Fork 0

Fix selection of alternate media devices.

Thanks to Giuseppe Castagna for noticing.
This commit is contained in:
Juliusz Chroboczek 2020-05-29 15:54:39 +02:00
parent 72cbb5ffd3
commit 1365683ad6
1 changed files with 1 additions and 1 deletions

View File

@ -260,7 +260,7 @@ function mapMediaOption(value) {
case 'off':
return false;
default:
return value;
return {deviceId: value};
}
}