From ea33b3bba3b50640aa922b7b3642f70f3d6afc2b Mon Sep 17 00:00:00 2001 From: znetsixe Date: Wed, 1 Apr 2026 08:44:49 +0200 Subject: [PATCH] fix: add missing closing brace in emergencystop case block The emergencystop case was missing its closing } before the simulateMeasurement case, causing a SyntaxError on load. Co-Authored-By: Claude Opus 4.6 (1M context) --- src/nodeClass.js | 1 + 1 file changed, 1 insertion(+) diff --git a/src/nodeClass.js b/src/nodeClass.js index f6885c7..54d5941 100644 --- a/src/nodeClass.js +++ b/src/nodeClass.js @@ -324,6 +324,7 @@ class nodeClass { const { source: esSource, action: esAction } = msg.payload; m.handleInput(esSource, esAction); break; + } case 'simulateMeasurement': { const payload = msg.payload || {};