From: Andy Chiang Date: Thu, 28 May 2026 15:03:16 +0000 (+0700) Subject: luci-app-ddns: fix syntax error X-Git-Url: http://git.99rst.org/?a=commitdiff_plain;h=6f849a7ffa01fba620f4bfdc3fa894e6f38c4caf;p=openwrt-luci.git luci-app-ddns: fix syntax error fix syntax error Signed-off-by: Andy Chiang --- diff --git a/applications/luci-app-ddns/root/usr/share/rpcd/ucode/ddns.uc b/applications/luci-app-ddns/root/usr/share/rpcd/ucode/ddns.uc index c7b5a38b02..d7b0af2f12 100644 --- a/applications/luci-app-ddns/root/usr/share/rpcd/ucode/ddns.uc +++ b/applications/luci-app-ddns/root/usr/share/rpcd/ucode/ddns.uc @@ -228,7 +228,7 @@ const methods = { const hasWget = () => { return cache.has_wget ??= hasCommand('wget'); - } + }; const hasWgetSsl = () => { return cache.has_wgetssl ??= hasWget() && system(`wget 2>&1 | grep -iqF 'https'`) == 0 ? true : false;