bug fix - outbound xhttp link

This commit is contained in:
MHSanaei
2024-12-27 21:32:47 +01:00
parent 1d90dea014
commit ecd9ae5f4a

View File

@@ -678,6 +678,7 @@ class Outbound extends CommonClass {
let headerType = url.searchParams.get('headerType') ?? undefined;
let host = url.searchParams.get('host') ?? undefined;
let path = url.searchParams.get('path') ?? undefined;
let mode = url.searchParams.get('mode') ?? undefined;
if (type === 'tcp' || type === 'none') {
stream.tcp = new TcpStreamSettings(headerType ?? 'none', host, path);