From 258fa141be47b3f3b25efb5efd6ca8716fc15d07 Mon Sep 17 00:00:00 2001 From: Martin Boonk Date: Sat, 2 Jul 2022 00:04:51 +0200 Subject: [PATCH] bthrm - Add missing semicolon --- apps/bthrm/boot.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/apps/bthrm/boot.js b/apps/bthrm/boot.js index cdb86d1c7..e25503775 100644 --- a/apps/bthrm/boot.js +++ b/apps/bthrm/boot.js @@ -6,7 +6,7 @@ var log = function(text, param){ if (global.showStatusInfo) - showStatusInfo(text) + showStatusInfo(text); if (settings.debuglog){ var logline = new Date().toISOString() + " - " + text; if (param) logline += ": " + JSON.stringify(param);