Bug fix
Some checks are pending
release Linux / build (push) Waiting to run
release Linux / release-zip (push) Blocked by required conditions
release Linux / build and release deb x64 & arm64 (push) Waiting to run
release Linux / build and release rpm x64 & arm64 (push) Waiting to run
release Linux / build and release rpm riscv64 (push) Waiting to run
release Linux / build and release deb riscv64 (push) Waiting to run
release macOS / build (push) Waiting to run
release macOS / release-zip (push) Blocked by required conditions
release macOS / package and release macOS dmg (push) Blocked by required conditions
release Windows desktop (Avalonia UI) / build (push) Waiting to run
release Windows desktop (Avalonia UI) / release-zip (push) Blocked by required conditions
release Windows / build (push) Waiting to run
release Windows / release-zip (push) Blocked by required conditions
update riscv dependent versions / update (push) Waiting to run

https://github.com/2dust/v2rayN/issues/9277
This commit is contained in:
2dust 2026-05-12 09:10:22 +08:00
parent d1c9c0b536
commit 51b384e119

View file

@ -491,7 +491,6 @@ public partial class CoreConfigV2rayService
//ws //ws
case nameof(ETransport.ws): case nameof(ETransport.ws):
WsSettings4Ray wsSettings = new(); WsSettings4Ray wsSettings = new();
wsSettings.headers = new Headers4Ray();
if (host.IsNotEmpty()) if (host.IsNotEmpty())
{ {
@ -503,6 +502,7 @@ public partial class CoreConfigV2rayService
} }
if (useragent.IsNotEmpty()) if (useragent.IsNotEmpty())
{ {
wsSettings.headers ??= new Headers4Ray();
wsSettings.headers.UserAgent = useragent; wsSettings.headers.UserAgent = useragent;
} }
streamSettings.wsSettings = wsSettings; streamSettings.wsSettings = wsSettings;
@ -522,6 +522,7 @@ public partial class CoreConfigV2rayService
} }
if (useragent.IsNotEmpty()) if (useragent.IsNotEmpty())
{ {
httpupgradeSettings.headers ??= new Headers4Ray();
httpupgradeSettings.headers.UserAgent = useragent; httpupgradeSettings.headers.UserAgent = useragent;
} }
streamSettings.httpupgradeSettings = httpupgradeSettings; streamSettings.httpupgradeSettings = httpupgradeSettings;