From 2ea7175be226b0dd725b0e38d7a1f6fa329dece1 Mon Sep 17 00:00:00 2001 From: sbwml <984419930@qq.com> Date: Tue, 7 Feb 2023 23:17:51 +0800 Subject: [PATCH] luci-app-ssr-plus: fix xray fingerprint MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * xray 1.7.3 TLS配置不再支持 fingerprint: disable 参数 --- .../luasrc/model/cbi/shadowsocksr/client-config.lua | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client-config.lua b/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client-config.lua index 1203f5df1..6aeb9ba6d 100644 --- a/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client-config.lua +++ b/luci-app-ssr-plus/luasrc/model/cbi/shadowsocksr/client-config.lua @@ -715,14 +715,14 @@ o.default = "0" if is_finded("xray") then -- [[ uTLS ]]-- o = s:option(ListValue, "fingerprint", translate("Finger Print")) - o:value("disable", translate("disable")) + o:value("", translate("disable")) o:value("firefox", translate("firefox")) o:value("chrome", translate("chrome")) o:value("safari", translate("safari")) o:value("randomized", translate("randomized")) o:depends({type = "v2ray", tls = true}) o:depends({type = "v2ray", xtls = true}) - o.default = "disable" + o.default = "" end o = s:option(Value, "tls_host", translate("TLS Host"))