FF don't allows fingerprinting handle empty label
This commit is contained in:
@@ -339,7 +339,7 @@ const MediaSettings = ({
|
||||
{ audioDevices.map((audio, index) =>
|
||||
{
|
||||
return (
|
||||
<MenuItem key={index} value={audio.deviceId}>{audio.label}</MenuItem>
|
||||
<MenuItem key={index} value={audio.deviceId}>{audio.label!=='' ? audio.label : index}</MenuItem>
|
||||
);
|
||||
})}
|
||||
</Select>
|
||||
|
||||
Reference in New Issue
Block a user