Skip to content

Commit 52615fd

Browse files
authoredMay 3, 2021
fix: dispatch device connection state change (#1509)
1 parent cf30539 commit 52615fd

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed
 

‎packages/uhk-agent/src/services/device.service.ts

+4-4
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
import { ipcMain } from 'electron';
2-
import { isEqual } from 'lodash';
2+
import { cloneDeep, isEqual } from 'lodash';
33
import {
44
ConfigurationReply,
55
DeviceConnectionState,
@@ -424,6 +424,8 @@ export class DeviceService {
424424

425425
const state = await this.device.getDeviceConnectionStateAsync();
426426
if (!isEqual(state, savedState)) {
427+
const newState = cloneDeep(state);
428+
427429
if (state.hasPermission && state.zeroInterfaceAvailable) {
428430
state.hardwareModules = await this.getHardwareModules(false);
429431
} else {
@@ -434,9 +436,7 @@ export class DeviceService {
434436
}
435437
this.win.webContents.send(IpcEvents.device.deviceConnectionStateChanged, state);
436438

437-
savedState = {
438-
...state
439-
};
439+
savedState = newState;
440440

441441
this.logService.misc('[DeviceService] Device connection state changed to:', state);
442442
}

0 commit comments

Comments
 (0)