diff --git a/src/api-binder.ts b/src/api-binder.ts index 789e7930..c06fadc7 100644 --- a/src/api-binder.ts +++ b/src/api-binder.ts @@ -521,6 +521,9 @@ export class APIBinder { private reportCurrentState(): null { (async () => { + if ((await this.config.get('localMode')) === true) { + return; + } this.reportPending = true; try { const currentDeviceState = await this.deviceState.getStatus();