diff --git a/web/assets/js/model/xray.js b/web/assets/js/model/xray.js index 7a8b25b9..e09f15b4 100644 --- a/web/assets/js/model/xray.js +++ b/web/assets/js/model/xray.js @@ -523,7 +523,7 @@ class HTTPUpgradeStreamSettings extends XrayCommonClass { } class SplitHTTPStreamSettings extends XrayCommonClass { - constructor(path='/', host='', headers=[] , maxUploadSize= 1, maxConcurrentUploads= 10) { + constructor(path='/', host='', headers=[] , maxUploadSize= 1000000, maxConcurrentUploads= 10) { super(); this.path = path; this.host = host; @@ -2608,4 +2608,4 @@ Inbound.WireguardSettings.Peer = class extends XrayCommonClass { keepAlive: this.keepAlive?? undefined, }; } -}; \ No newline at end of file +};