From a9f4c5fd77cd7c9f6606d1d927d232cc1ecefde3 Mon Sep 17 00:00:00 2001 From: mhsanaei Date: Wed, 17 Apr 2024 11:04:25 +0330 Subject: [PATCH] fix httpUpgrade host Co-Authored-By: Alireza Ahmadi --- web/assets/js/model/outbound.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/web/assets/js/model/outbound.js b/web/assets/js/model/outbound.js index 17903fe1..7f9882e0 100644 --- a/web/assets/js/model/outbound.js +++ b/web/assets/js/model/outbound.js @@ -289,7 +289,7 @@ class HttpUpgradeStreamSettings extends CommonClass { static fromJson(json={}) { return new HttpUpgradeStreamSettings( json.path, - json.Host, + json.host, json.headers && !ObjectUtil.isEmpty(json.headers.Host) ? json.headers.Host : '', ); }