diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2024-12-27 23:30:51 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2024-12-27 23:30:51 +0300 |
| commit | 747ad3b9c8f3a368b9c3d808f5f4b56933c1962b (patch) | |
| tree | 140638aacf4b762bb9bdcef29b2a2b9e4df8a08b /web/assets | |
| parent | cf879f9527b2d2f06d0d9c77e9e13ac7c60ad873 (diff) | |
bug fix - outbound xhttp link
Diffstat (limited to 'web/assets')
| -rw-r--r-- | web/assets/js/model/outbound.js | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/web/assets/js/model/outbound.js b/web/assets/js/model/outbound.js index eb4d7f71..d58839bc 100644 --- a/web/assets/js/model/outbound.js +++ b/web/assets/js/model/outbound.js @@ -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); |
