From 7877d657fc4cb1639d77bf0d595f4a28d8765279 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Feh=C3=A9r=20Roland?= Date: Wed, 8 Oct 2025 12:46:33 +0200 Subject: [PATCH] trweb: Add missing semicolons Yes, I know this is freaking JS, but I do have standards --- js/trweb.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/js/trweb.js b/js/trweb.js index 4fa0fdc..3b589be 100644 --- a/js/trweb.js +++ b/js/trweb.js @@ -14,9 +14,9 @@ class trweb { #container; - #guiHeader + #guiHeader; #torrentListView; - #guiFooter + #guiFooter; constructor (container, loadcb, savecb, logger) { this.#container = container;