Skip to content

Commit

Permalink
bug fixed - mux #2015
Browse files Browse the repository at this point in the history
  • Loading branch information
MHSanaei committed Mar 11, 2024
1 parent 389b540 commit 020d1ad
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion web/assets/js/model/outbound.js
Original file line number Diff line number Diff line change
Expand Up @@ -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,
Expand Down

1 comment on commit 020d1ad

@Arman-nsb
Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

there is still a problem with enabling mux. when set on the freedom outbound for direct mode, the connection fails.

Please sign in to comment.