From 19b8b5467278c0c1cab02d4fbd2a8e3d7bc69de9 Mon Sep 17 00:00:00 2001 From: v2ray Date: Sat, 23 Jan 2016 11:26:48 +0100 Subject: [PATCH] fix usage of = --- shell/point/config_json.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/shell/point/config_json.go b/shell/point/config_json.go index a1413bd01..305ba9377 100644 --- a/shell/point/config_json.go +++ b/shell/point/config_json.go @@ -133,7 +133,7 @@ func (this *InboundDetourConfig) UnmarshalJSON(data []byte) error { this.Allocation.Refresh = 5 } if this.Allocation.Concurrency == 0 { - this.Allocation.Concurrency == 3 + this.Allocation.Concurrency = 3 } } return nil