mirror of https://github.com/v2ray/v2ray-core
fix default value for size = 0
parent
70b2b22047
commit
0301222e22
|
@ -57,7 +57,9 @@ func init() {
|
|||
Name: raySizeEnvKey,
|
||||
AltName: platform.NormalizeEnvName(raySizeEnvKey),
|
||||
}.GetValueAsInt(10)
|
||||
if size > 0 {
|
||||
if size == 0 {
|
||||
defaultLimit = 2147483647
|
||||
} else {
|
||||
defaultLimit = int32(size) * 1024 * 1024
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue