From ecd9ae5f4a386502abf712d0a88ca79edfaf78d8 Mon Sep 17 00:00:00 2001 From: MHSanaei Date: Fri, 27 Dec 2024 21:32:47 +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 d8be9283..2b1ec534 100644 --- a/web/assets/js/model/outbound.js +++ b/web/assets/js/model/outbound.js @@ -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);