File tree 1 file changed +4
-4
lines changed
packages/uhk-agent/src/services
1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change 1
1
import { ipcMain } from 'electron' ;
2
- import { isEqual } from 'lodash' ;
2
+ import { cloneDeep , isEqual } from 'lodash' ;
3
3
import {
4
4
ConfigurationReply ,
5
5
DeviceConnectionState ,
@@ -424,6 +424,8 @@ export class DeviceService {
424
424
425
425
const state = await this . device . getDeviceConnectionStateAsync ( ) ;
426
426
if ( ! isEqual ( state , savedState ) ) {
427
+ const newState = cloneDeep ( state ) ;
428
+
427
429
if ( state . hasPermission && state . zeroInterfaceAvailable ) {
428
430
state . hardwareModules = await this . getHardwareModules ( false ) ;
429
431
} else {
@@ -434,9 +436,7 @@ export class DeviceService {
434
436
}
435
437
this . win . webContents . send ( IpcEvents . device . deviceConnectionStateChanged , state ) ;
436
438
437
- savedState = {
438
- ...state
439
- } ;
439
+ savedState = newState ;
440
440
441
441
this . logService . misc ( '[DeviceService] Device connection state changed to:' , state ) ;
442
442
}
You can’t perform that action at this time.
0 commit comments