027d5ad288
In scenarios where the join audio flow skips echo test, NotAllowedError (and any other errors) are all being mashed together under a generic MEDIA_ERROR object. Properly handle specific errors in audio-manager so they're correctly render in the audio modal help screen.
10 lines
143 B
JavaScript
10 lines
143 B
JavaScript
const MIC_ERROR = {
|
|
UNKNOWN: 0,
|
|
NO_SSL: 9,
|
|
MAC_OS_BLOCK: 8,
|
|
NO_PERMISSION: 7,
|
|
DEVICE_NOT_FOUND: 6,
|
|
};
|
|
|
|
export default { MIC_ERROR };
|