luci-app-ddns: fix typo err in luci.ddns

Signed-off-by: Chen Minqiang <ptpt52@gmail.com>
This commit is contained in:
Chen Minqiang 2019-11-16 15:10:17 +08:00
parent 9740604eef
commit e0d01ee267

View file

@ -246,7 +246,7 @@ local methods = {
local function check_certs()
local _, v = fs.glob("/etc/ssl/certs/*.crt")
if ( v == 0 ) then _, v = NXFS.glob("/etc/ssl/certs/*.pem") end
if ( v == 0 ) then _, v = fs.glob("/etc/ssl/certs/*.pem") end
return (v > 0)
end