From 8aeb78d1c1893e1bcf0e3a8f8a2c17fa6ffbb6d2 Mon Sep 17 00:00:00 2001 From: alphakk Date: Thu, 15 Nov 2018 12:06:09 +0800 Subject: [PATCH] luci-app-https_dns_proxy: fix datatype of subnet address option The datatype ip4prefix only accept numbers from 0 to 32, not subnet/mask (i.e. 192.168.1.0/24), this affects option "-e". https://github.com/openwrt/luci/wiki/Datatypes#ip4prefix the description is wrong, according to src http://luci.subsignal.org/trac/browser/luci/branches/luci-0.10/libs/web/luasrc/cbi/datatypes.lua#L76 Submitted-by: alphakk [slightly reword commit message] Signed-off-by: Jo-Philipp Wich --- .../luasrc/model/cbi/https_dns_proxy.lua | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua b/applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua index 61511a413..20d486f37 100644 --- a/applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua +++ b/applications/luci-app-https_dns_proxy/luasrc/model/cbi/https_dns_proxy.lua @@ -43,7 +43,7 @@ lp.rmempty = true -- group.rmempty = true sa = s3:option(Value, "subnet_addr", translate("Subnet address")) -sa.datatype = "ip4prefix" +sa.datatype = "ip4addr" sa.rmempty = true ps = s3:option(Value, "proxy_server", translate("Proxy server")) -- 2.25.1