From 5701d53a24118b3ec8c6522144650e731484cda3 Mon Sep 17 00:00:00 2001 From: Alireza Ahmadi Date: Tue, 9 Apr 2024 21:25:34 +0200 Subject: [PATCH] fix httpUpgrade host #1154 --- 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 caa67be1..567cbe88 100644 --- a/web/assets/js/model/outbound.js +++ b/web/assets/js/model/outbound.js @@ -287,7 +287,7 @@ class HttpUpgradeStreamSettings extends CommonClass { static fromJson(json={}) { return new HttpUpgradeStreamSettings( json.path, - json.Host, + json.host, ); }