Compare commits

...

2 commits

Author SHA1 Message Date
MHSanaei
195effd177
v2.4.11 2024-12-27 21:49:45 +01:00
MHSanaei
747ad3b9c8
bug fix - outbound xhttp link 2024-12-27 21:30:51 +01:00
2 changed files with 2 additions and 1 deletions

View file

@ -1 +1 @@
2.4.10
2.4.11

View file

@ -721,6 +721,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);