pull/298/merge
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
1 changed files with 1 additions and 1 deletions

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
}
}
}