From cd9da040eb3d6cf1c49f705f2afb9d5c6a6a2eea Mon Sep 17 00:00:00 2001 From: MarcUs7 <96580944+MarcUs7i@users.noreply.github.com> Date: Thu, 2 Jan 2025 21:46:57 +0100 Subject: [PATCH] fixed small mistake --- watcher.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/watcher.js b/watcher.js index 2ca8da2..2b9205d 100644 --- a/watcher.js +++ b/watcher.js @@ -216,7 +216,7 @@ while(true) { try { if (endpoint.url.includes('.onion')) { - const [host, port] = endpoint.url.split(':'); + [host, port] = endpoint.url.split(':'); host = endpoint.id.includes('-POWERFUL') ? '192.168.0.106' : '127.0.0.1'; const result = await checkOnionService(host, port || 8333);