diff options
| author | MHSanaei <ho3ein.sanaei@gmail.com> | 2024-03-12 01:47:42 +0300 |
|---|---|---|
| committer | MHSanaei <ho3ein.sanaei@gmail.com> | 2024-03-12 01:47:42 +0300 |
| commit | 020d1adc55e92f2a805395046e560d7a756b129b (patch) | |
| tree | f803fec4ed0b3e1c72938a787ccb80debe612dd6 | |
| parent | 389b5408b13409a9a375adf0f2f3391fc7d1391a (diff) | |
bug fixed - mux #2015
| -rw-r--r-- | web/assets/js/model/outbound.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/web/assets/js/model/outbound.js b/web/assets/js/model/outbound.js index a4df7870..60465599 100644 --- a/web/assets/js/model/outbound.js +++ b/web/assets/js/model/outbound.js @@ -477,7 +477,7 @@ class Mux extends CommonClass { static fromJson(json = {}) { if (Object.keys(json).length === 0) return undefined; - return new SockoptStreamSettings( + return new Mux( json.enabled, json.concurrency, json.xudpConcurrency, |
