1
Fork 0
mirror of https://github.com/jech/galene.git synced 2024-11-10 02:35:58 +01:00

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

View file

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