From 045fac4639f20bf496bec7bb544cf9e6de8e8b26 Mon Sep 17 00:00:00 2001 From: si458 Date: Thu, 10 Jul 2025 15:19:50 +0100 Subject: [PATCH] forgot close bracket for new gotodeviceip Signed-off-by: si458 --- views/default3.handlebars | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/views/default3.handlebars b/views/default3.handlebars index b67679f2..9f6826ff 100644 --- a/views/default3.handlebars +++ b/views/default3.handlebars @@ -4533,7 +4533,7 @@ var foundNode = null; if (nodes != null) { for (var i in nodes) { if (nodes[i].rname == args.gotodevicername) { foundNode = nodes[i]._id; } } } if (foundNode) { gotoDevice(foundNode, xviewmode); goBackStack.push(1); } - else if (args.gotodeviceip != null) { + } else if (args.gotodeviceip != null) { var foundNode = null; if (nodes != null) { for (var i in nodes) { if (nodes[i].ip == args.gotodeviceip) { foundNode = nodes[i]._id; } } } if (foundNode) { gotoDevice(foundNode, xviewmode); goBackStack.push(1); }