From: Paul Donald Date: Thu, 24 Oct 2024 18:34:43 +0000 (+0200) Subject: luci-proto-wireguard: follow-up fix for status overview X-Git-Url: http://git.lede-project.org./?a=commitdiff_plain;h=760ac165fa76952161e82bd825d9c757a10e0436;p=project%2Fluci.git luci-proto-wireguard: follow-up fix for status overview follow-up to 7acea818735a9c5e8577d6b57f359996956f15e4 Closes #7347 Signed-off-by: Paul Donald --- diff --git a/protocols/luci-proto-wireguard/root/usr/share/rpcd/ucode/luci.wireguard b/protocols/luci-proto-wireguard/root/usr/share/rpcd/ucode/luci.wireguard index c6ae13c94b..c177da4773 100644 --- a/protocols/luci-proto-wireguard/root/usr/share/rpcd/ucode/luci.wireguard +++ b/protocols/luci-proto-wireguard/root/usr/share/rpcd/ucode/luci.wireguard @@ -89,7 +89,7 @@ const methods = { let peer_name; uci.foreach('network', `wireguard_${last_device}`, (s) => { - if (!s.disabled && s.public_key == record[1] && checkPeerHost(s.endpoint_host, s.endpoint_port, record[3])) + if (!s.disabled && s.public_key == record[1] && (!s.endpoint_host || checkPeerHost(s.endpoint_host, s.endpoint_port, record[3]))) peer_name = s.description; });