luci-app-ssr-plus: subscribe: fix typo error

`port` -> `server_port`

Fixes: #963

Signed-off-by: Tianling Shen <cnsztl@immortalwrt.org>
This commit is contained in:
Tianling Shen 2022-08-15 20:20:51 +08:00 committed by sbwml
parent a14f65ce3b
commit 882661c41e

View File

@ -357,7 +357,7 @@ local function processData(szType, content)
result.type = "v2ray" result.type = "v2ray"
result.v2ray_protocol = "vless" result.v2ray_protocol = "vless"
result.server = url.host result.server = url.host
result.port = url.port result.server_port = url.port
result.vmess_id = url.user result.vmess_id = url.user
result.vless_encryption = params.encryption or "none" result.vless_encryption = params.encryption or "none"
result.transport = params.type or "tcp" result.transport = params.type or "tcp"