From 155b08d6d5b6b22bd98c6333aa2c1172c55d9b1b Mon Sep 17 00:00:00 2001 From: Armilar <102996011+Armilar@users.noreply.github.com> Date: Fri, 21 Nov 2025 23:19:57 +0100 Subject: [PATCH] Change subscription change type from 'any' to 'ne' --- ioBroker/DEV/NSPanelTs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ioBroker/DEV/NSPanelTs.ts b/ioBroker/DEV/NSPanelTs.ts index a3faa5cf..ff1c140a 100644 --- a/ioBroker/DEV/NSPanelTs.ts +++ b/ioBroker/DEV/NSPanelTs.ts @@ -6418,7 +6418,7 @@ function RegisterEntityWatcher (id: string): void { return; } - subscriptions[id] = on({id: id, change: 'any'}, (obj) => { + subscriptions[id] = on({id: id, change: 'ne'}, (obj) => { //@ts-ignore if (obj.oldState && obj.oldState.val === obj.state.val && obj.state.ack) { return;