luci-app-ssr-plus: client-config: fix typo error

Fixes: #1151

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
This commit is contained in:
Tianling Shen 2023-03-22 22:35:18 +08:00 committed by sbwml
parent 29b1660a2a
commit c8815f1f78

View File

@ -467,13 +467,13 @@ if is_finded("v2ray") then
o = s:option(Value, "ws_ed", translate("Max Early Data")) o = s:option(Value, "ws_ed", translate("Max Early Data"))
o:depends("ws_ed_enable", true) o:depends("ws_ed_enable", true)
o.datatype = "uinteger" o.datatype = "uinteger"
o.value("2048") o:value("2048")
o.rmempty = true o.rmempty = true
-- WS前置数据标头 -- WS前置数据标头
o = s:option(Value, "ws_ed_header", translate("Early Data Header Name")) o = s:option(Value, "ws_ed_header", translate("Early Data Header Name"))
o:depends("ws_ed_enable", true) o:depends("ws_ed_enable", true)
o.value("Sec-WebSocket-Protocol") o:value("Sec-WebSocket-Protocol")
o.rmempty = true o.rmempty = true
end end