From 044abda65b6b5f4bc21c350161b81fabdd315589 Mon Sep 17 00:00:00 2001 From: Armilar <102996011+Armilar@users.noreply.github.com> Date: Fri, 21 Nov 2025 23:33:54 +0100 Subject: [PATCH] Add check for ACTUAL state existence before SET --- 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 ff1c140a..49c1ed3e 100644 --- a/ioBroker/DEV/NSPanelTs.ts +++ b/ioBroker/DEV/NSPanelTs.ts @@ -5238,7 +5238,7 @@ function CreateEntity (pageItem: PageItem, placeId: number, useColors: boolean = val = getState(pageItem.id + '.ACTUAL').val; RegisterEntityWatcher(pageItem.id + '.ACTUAL'); } - if (existsState(pageItem.id + '.SET')) { + if (existsState(pageItem.id + '.SET') && !existsState(pageItem.id + 'ACTUAL')) { val = getState(pageItem.id + '.SET').val; RegisterEntityWatcher(pageItem.id + '.SET'); }