1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-12-22 01:57:12 -05:00

fix user level parsing in freedom. fixes #1555

This commit is contained in:
Darien Raymond 2019-02-16 21:25:19 +01:00
parent b488c42453
commit 204b895576
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -29,7 +29,7 @@ func (c *FreedomConfig) Build() (proto.Message, error) {
case "useip6", "useipv6", "use_ipv6", "use_ip_v6", "use_ip6":
config.DomainStrategy = freedom.Config_USE_IP6
}
config.Timeout = 600
if c.Timeout != nil {
config.Timeout = *c.Timeout
}