fix settings.js

auto_join_3.3
Stefan Otto 2020-05-05 23:41:27 +02:00
parent a2d11121d3
commit da6c9d3ecf
1 changed files with 7 additions and 0 deletions

View File

@ -86,6 +86,13 @@ const settings = (state = initialState, action) =>
return { ...state, noiseSuppression };
}
case 'SET_DEFAULT_AUDIO':
{
const { audio } = action.payload;
return { ...state, audio };
}
case 'TOGGLE_AUTO_GAIN_CONTROL':
{
const autoGainControl = !state.autoGainControl;