Fix lint issues

This commit is contained in:
jliddev
2022-11-23 09:53:51 -06:00
parent bd47f40ec1
commit 22d490a28b

View File

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