Browse Source

disable mux for vision flow

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

+ 4 - 0
web/assets/js/model/outbound.js

@@ -577,6 +577,10 @@ class Outbound extends CommonClass {
     }
 
     canEnableMux() {
+        if (this.settings.flow && this.settings.flow != ''){
+            this.mux.enabled = false;
+            return false;
+        }
         return [Protocols.VMess, Protocols.VLESS, Protocols.Trojan, Protocols.Shadowsocks, Protocols.HTTP, Protocols.Socks].includes(this.protocol);
     }