mirror of
https://github.com/dutchcoders/transfer.sh.git
synced 2024-11-27 06:30:19 +01:00
fix mistake with request max memory
This commit is contained in:
parent
71dbb92404
commit
9d0781fa16
1 changed files with 1 additions and 1 deletions
|
@ -59,7 +59,7 @@ import (
|
|||
const SERVER_INFO = "transfer.sh"
|
||||
|
||||
// parse request with maximum memory of _24Kilobits
|
||||
const _24K = (1 << 20) * 24
|
||||
const _24K = (1 << 10) * 24
|
||||
|
||||
type OptionFn func(*Server)
|
||||
|
||||
|
|
Loading…
Reference in a new issue