From 747ad3b9c8f3a368b9c3d808f5f4b56933c1962b Mon Sep 17 00:00:00 2001 From: MHSanaei Date: Fri, 27 Dec 2024 21:30:51 +0100 Subject: [PATCH] bug fix - outbound xhttp link --- web/assets/js/model/outbound.js | 1 + 1 file changed, 1 insertion(+) 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);