diff options
Diffstat (limited to 'src/catlfish_web.erl')
-rw-r--r-- | src/catlfish_web.erl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/catlfish_web.erl b/src/catlfish_web.erl index f44745d..492c652 100644 --- a/src/catlfish_web.erl +++ b/src/catlfish_web.erl @@ -60,7 +60,7 @@ loop(Req, Module) -> Req:respond(Result) end; 'POST' -> - Body = Req:recv_body(), + Body = Req:recv_body(4096 * 1024), Result = case http_auth:verify_auth(AuthHeader, "POST", Path, Body) of failure -> |