From c49ec9a74cf1c407cbe872355f1e2ac03a8e3080 Mon Sep 17 00:00:00 2001 From: "Shishkevich D." <135337715+shishkevichd@users.noreply.github.com> Date: Sun, 9 Mar 2025 11:28:12 +0700 Subject: chore: add new grpc params for outbound (#2744) --- web/assets/js/model/inbound.js | 6 +----- 1 file changed, 1 insertion(+), 5 deletions(-) (limited to 'web/assets/js/model/inbound.js') diff --git a/web/assets/js/model/inbound.js b/web/assets/js/model/inbound.js index 5c3235e1..d08553d9 100644 --- a/web/assets/js/model/inbound.js +++ b/web/assets/js/model/inbound.js @@ -420,20 +420,17 @@ class WsStreamSettings extends XrayCommonClass { class GrpcStreamSettings extends XrayCommonClass { constructor( serviceName = "", - authority = "", - multiMode = false, + authority = "" ) { super(); this.serviceName = serviceName; this.authority = authority; - this.multiMode = multiMode; } static fromJson(json = {}) { return new GrpcStreamSettings( json.serviceName, json.authority, - json.multiMode ); } @@ -441,7 +438,6 @@ class GrpcStreamSettings extends XrayCommonClass { return { serviceName: this.serviceName, authority: this.authority, - multiMode: this.multiMode, } } } -- cgit v1.2.3