File tree Expand file tree Collapse file tree 1 file changed +3
-1
lines changed
packages/uhk-web/src/app/store/effects Expand file tree Collapse file tree 1 file changed +3
-1
lines changed Original file line number Diff line number Diff line change @@ -16,6 +16,8 @@ import {
16
16
shouldUpgradeAgent ,
17
17
shouldUpgradeFirmware ,
18
18
UdevRulesInfo ,
19
+ UHK_60_DEVICE ,
20
+ UHK_60_V2_DEVICE ,
19
21
UHK_80_DEVICE ,
20
22
UserConfiguration
21
23
} from 'uhk-common' ;
@@ -118,7 +120,7 @@ export class DeviceEffects {
118
120
ofType ( ActionTypes . CheckAreHostConnectionsPaired , DongleActions . DonglePairingSuccess ) ,
119
121
withLatestFrom ( this . store . select ( getConnectedDevice ) , this . store . select ( getHostConnections ) ) ,
120
122
tap ( ( [ _ , connectedDevice , hostConnections ] ) => {
121
- if ( connectedDevice ?. id !== UHK_80_DEVICE . id ) {
123
+ if ( connectedDevice ?. id === UHK_60_DEVICE . id || connectedDevice ?. id === UHK_60_V2_DEVICE . id ) {
122
124
return
123
125
}
124
126
You can’t perform that action at this time.
0 commit comments