Browse Source

fix httpUpgrade host

Co-Authored-By: Alireza Ahmadi <[email protected]>
mhsanaei 10 months ago
parent
commit
a9f4c5fd77
1 changed files with 1 additions and 1 deletions
  1. 1 1
      web/assets/js/model/outbound.js

+ 1 - 1
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 : '',
         );
     }