mirror of
https://github.com/vector-im/element-web.git
synced 2025-08-16 03:07:04 +02:00
Add clarifying comment in media device selection
Hopefully explain the confusing mismatch.
This commit is contained in:
parent
24a390f840
commit
d1bca2838f
@ -157,6 +157,9 @@ export default class VoiceUserSettingsTab extends React.Component {
|
||||
label: _t('Default Device'),
|
||||
};
|
||||
const getDefaultDevice = (devices) => {
|
||||
// Note we're looking for a device with deviceId 'default' but adding a device
|
||||
// with deviceId == the empty string: this is because Chrome gives us a device
|
||||
// with deviceId 'default', so we're looking for this, not the one we are adding.
|
||||
if (!devices.some((i) => i.deviceId === 'default')) {
|
||||
devices.unshift(defaultOption);
|
||||
return '';
|
||||
|
Loading…
Reference in New Issue
Block a user