From 4207c2c5d51470fd273441f92b0a2c104441454c Mon Sep 17 00:00:00 2001 From: Paul Donald Date: Wed, 26 Mar 2025 22:40:01 +0100 Subject: [PATCH] luci-proto-wireguard: add extra checks for hostname when building qr Signed-off-by: Paul Donald --- .../htdocs/luci-static/resources/protocol/wireguard.js | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js b/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js index 0b38e9ddc1..d0751bc9fb 100644 --- a/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js +++ b/protocols/luci-proto-wireguard/htdocs/luci-static/resources/protocol/wireguard.js @@ -724,12 +724,12 @@ return network.registerProtocol('wireguard', { var hostnames = []; uci.sections('ddns', 'service', function(s) { - if (typeof(s.lookup_host) == 'string' && s.enabled == '1') + if (typeof(s?.lookup_host) == 'string' && s?.enabled == '1') hostnames.push(s.lookup_host); }); uci.sections('system', 'system', function(s) { - if (typeof(s.hostname) == 'string' && s.hostname.indexOf('.') > 0) + if (typeof(s?.hostname) == 'string' && s?.hostname?.indexOf('.') > 0) hostnames.push(s.hostname); });