From b170e9bb33df71e74a0b10f7b8c98b42c7866cc2 Mon Sep 17 00:00:00 2001 From: RKBoss6 <178680496+RKBoss6@users.noreply.github.com> Date: Wed, 23 Jul 2025 17:16:20 -0400 Subject: [PATCH] Fix for extra semicolon syntax error --- apps/smartbatt/module.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/smartbatt/module.js b/apps/smartbatt/module.js index afd5dc6bb..30e84aa49 100644 --- a/apps/smartbatt/module.js +++ b/apps/smartbatt/module.js @@ -113,7 +113,7 @@ exports.changeInterval = function(newInterval) { clearInterval(interval); interval=setInterval(recordBattery, newInterval); - }; + } // Start recording every 5 minutes interval=setInterval(recordBattery, 600000); recordBattery(); // Log immediately