From 63048aa530cb7f44cc3198f882160d2fc0ce0902 Mon Sep 17 00:00:00 2001 From: wu-ming-cloud <278988643+wu-ming-cloud@users.noreply.github.com> Date: Thu, 30 Apr 2026 19:56:08 +0800 Subject: [PATCH] fix: forward XHTTP extra settings --- core/inbound.go | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/core/inbound.go b/core/inbound.go index d601b0b..ccb2e4e 100644 --- a/core/inbound.go +++ b/core/inbound.go @@ -192,10 +192,10 @@ func buildVLess(nodeInfo *panel.NodeInfo, inbound *coreConf.InboundDetourConfig) } case "splithttp", "xhttp": inbound.StreamSetting.SplitHTTPSettings = &coreConf.SplitHTTPConfig{ - Host: nodeInfo.Protocol.Host, - Path: nodeInfo.Protocol.Path, - Mode: nodeInfo.Protocol.XHTTPMode, - //Extra: json.RawMessage(nodeInfo.Protocol.XHTTPExtra), + Host: nodeInfo.Protocol.Host, + Path: nodeInfo.Protocol.Path, + Mode: nodeInfo.Protocol.XHTTPMode, + Extra: json.RawMessage(nodeInfo.Protocol.XHTTPExtra), } default: return errors.New("the network type is not vail")