File tree Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Expand file tree Collapse file tree 1 file changed +4
-2
lines changed Original file line number Diff line number Diff line change @@ -42,11 +42,13 @@ export const startConnectionProcess = (): void => {
4242 const { bluetooth } = get ( compatibility ) ;
4343 const { isInputConnected, reconnectState } = get ( state ) ;
4444 // Updating the state will cause a popup to appear, from where the connection process will take place
45-
4645 let initialInputDialogState = ConnectDialogStates . START_BLUETOOTH ;
4746 if ( reconnectState . connectionType === 'none' && ! bluetooth ) {
4847 initialInputDialogState = ConnectDialogStates . START_RADIO ;
49- } else if ( reconnectState . connectionType !== 'bluetooth' ) {
48+ } else if (
49+ reconnectState . connectionType === 'bridge' ||
50+ reconnectState . connectionType === 'remote'
51+ ) {
5052 initialInputDialogState = ConnectDialogStates . START_RADIO ;
5153 }
5254 connectionDialogState . update ( s => {
You can’t perform that action at this time.
0 commit comments