Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/MHSanaei/3x-ui.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorpwnnex <eternxles@gmail.com>2026-04-22 18:55:09 +0300
committerpwnnex <eternxles@gmail.com>2026-04-22 18:55:09 +0300
commiteb4791a1cdabebbf0b0d5a81a40ecc7d88924656 (patch)
tree9c8e302bd2e0594f3d64341561716f83c4b1c56f /sub/subJsonService.go
parente6d0c33937f5776911e5fc1e9d8015d8a9323450 (diff)
hysteria: also accept "hysteria2" protocol string
UI stores v1 and v2 both as "hysteria" with settings.version, but inbounds that came in from imports / manual SQL can carry the literal "hysteria2" string and get silently dropped everywhere we switch on protocol. Add Hysteria2 constant + IsHysteria helper, use it in the places that gate on protocol (sub SQL, getLink, genHysteriaLink, clash buildProxy, json gen, inbound.go validation, xray AddUser). Existing "hysteria" inbounds are untouched. closes #4081
Diffstat (limited to 'sub/subJsonService.go')
-rw-r--r--sub/subJsonService.go2
1 files changed, 1 insertions, 1 deletions
diff --git a/sub/subJsonService.go b/sub/subJsonService.go
index acb8e05f..a51f10bb 100644
--- a/sub/subJsonService.go
+++ b/sub/subJsonService.go
@@ -209,7 +209,7 @@ func (s *SubJsonService) getConfig(inbound *model.Inbound, client model.Client,
newOutbounds = append(newOutbounds, s.genVless(inbound, streamSettings, client))
case "trojan", "shadowsocks":
newOutbounds = append(newOutbounds, s.genServer(inbound, streamSettings, client))
- case "hysteria":
+ case "hysteria", "hysteria2":
newOutbounds = append(newOutbounds, s.genHy(inbound, newStream, client))
}