Skip to content

Commit

Permalink
fix(devices) filter out Zoom audio device
Browse files Browse the repository at this point in the history
I haven't seen any particular problem with it, but it's of no use
anyway...
  • Loading branch information
saghul committed Dec 20, 2024
1 parent 3059558 commit c23684e
Showing 1 changed file with 5 additions and 2 deletions.
7 changes: 5 additions & 2 deletions react/features/base/devices/constants.ts
Original file line number Diff line number Diff line change
@@ -1,8 +1,11 @@
/**
* Prefixes of devices that will be filtered from the device list.
*
* NOTE: Currently we filter only 'Microsoft Teams Audio Device' virtual device. It seems that it can't be set
* NOTE: It seems that the filtered devices can't be set
* as default device on the OS level and this use case is not handled in the code. If we add more device prefixes that
* can be default devices we should make sure to handle the default device use case.
*/
export const DEVICE_LABEL_PREFIXES_TO_IGNORE = [ 'Microsoft Teams Audio Device' ];
export const DEVICE_LABEL_PREFIXES_TO_IGNORE = [
'Microsoft Teams Audio Device',
'ZoomAudioDevice'
];

0 comments on commit c23684e

Please sign in to comment.