From 6f849a7ffa01fba620f4bfdc3fa894e6f38c4caf Mon Sep 17 00:00:00 2001 From: Andy Chiang Date: Thu, 28 May 2026 22:03:16 +0700 Subject: [PATCH] luci-app-ddns: fix syntax error fix syntax error Signed-off-by: Andy Chiang --- applications/luci-app-ddns/root/usr/share/rpcd/ucode/ddns.uc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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;