From 22d490a28bd0918ea8d29906f5119d7973be2ca9 Mon Sep 17 00:00:00 2001 From: jliddev Date: Wed, 23 Nov 2022 09:53:51 -0600 Subject: [PATCH] Fix lint issues --- .../src/app/services/electron/electron.service.ts | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/wowup-electron/src/app/services/electron/electron.service.ts b/wowup-electron/src/app/services/electron/electron.service.ts index 1da5c6a1..5df5b9db 100644 --- a/wowup-electron/src/app/services/electron/electron.service.ts +++ b/wowup-electron/src/app/services/electron/electron.service.ts @@ -137,22 +137,22 @@ export class ElectronService { }); this.onRendererEvent(IPC_POWER_MONITOR_LOCK, () => { - console.log("POWER_MONITOR_LOCK received", `navigator.onLine: ${navigator.onLine}`); + console.log("POWER_MONITOR_LOCK received", `navigator.onLine: ${navigator.onLine.toString()}`); this._powerMonitorSrc.next(IPC_POWER_MONITOR_LOCK); }); this.onRendererEvent(IPC_POWER_MONITOR_UNLOCK, () => { - console.log("POWER_MONITOR_UNLOCK received", `navigator.onLine: ${navigator.onLine}`); + console.log("POWER_MONITOR_UNLOCK received", `navigator.onLine: ${navigator.onLine.toString()}`); this._powerMonitorSrc.next(IPC_POWER_MONITOR_UNLOCK); }); this.onRendererEvent(IPC_POWER_MONITOR_SUSPEND, () => { - console.log("POWER_MONITOR_SUSPEND received", `navigator.onLine: ${navigator.onLine}`); + console.log("POWER_MONITOR_SUSPEND received", `navigator.onLine: ${navigator.onLine.toString()}`); this._powerMonitorSrc.next(IPC_POWER_MONITOR_SUSPEND); }); this.onRendererEvent(IPC_POWER_MONITOR_RESUME, () => { - console.log("POWER_MONITOR_RESUME received", `navigator.onLine: ${navigator.onLine}`); + console.log("POWER_MONITOR_RESUME received", `navigator.onLine: ${navigator.onLine.toString()}`); this._powerMonitorSrc.next(IPC_POWER_MONITOR_RESUME); });