1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2024-06-29 10:45:22 +00:00
This commit is contained in:
Darien Raymond 2017-05-15 20:58:27 +02:00
parent ad35fc7028
commit c6a68755b6
No known key found for this signature in database
GPG Key ID: 7251FFA14BB18169

View File

@ -48,7 +48,7 @@ func init() {
if len(sizeStr) > 0 {
customSize, err := strconv.ParseUint(sizeStr, 10, 32)
if err == nil {
streamSizeLimit = uint64(customSize) * 1024 * 1024
streamSizeLimit = customSize * 1024 * 1024
}
}
}