From caddec1190e06b822cc70a37d2f89c55fa755abc Mon Sep 17 00:00:00 2001 From: Armilar <102996011+Armilar@users.noreply.github.com> Date: Thu, 7 Dec 2023 20:02:12 +0100 Subject: [PATCH] v4.3.3.19 - Update NsPanelTs.ts - Fix Trigger activeDimmodeBrightness if Dimmode = -1 --- ioBroker/NsPanelTs.ts | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ioBroker/NsPanelTs.ts b/ioBroker/NsPanelTs.ts index f4a8dd26..2ea772b5 100644 --- a/ioBroker/NsPanelTs.ts +++ b/ioBroker/NsPanelTs.ts @@ -1288,7 +1288,7 @@ InitConfigParameters(); on({id: [].concat(NSPanel_Path + 'Config.ScripgtDebugStatus'), change: "ne"}, async function (obj) { try { - obj.state.val ? log('Debugmodus aktiviert', 'info') : log('Debugmodus deaktiviert', 'info'); + obj.state.val ? log('Debug mode activated', 'info') : log('Debug mode disabled', 'info'); Debug = obj.state.val } catch (err) { log('error at Trigger ScripgtDebugStatus: ' + err.message, 'warn');