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); });