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); });