1
0
Fork 0
mirror of https://github.com/edgurgel/httparrot synced 2025-04-05 08:12:31 -04:00

Merge pull request #16 from bratsche/master

Fix req being used in an unsafe way.
This commit is contained in:
Eduardo Gurgel 2016-06-22 09:09:41 -04:00 committed by GitHub
commit a0a9a76a78

View file

@ -62,7 +62,9 @@ defmodule HTTParrot do
body = JSX.prettify!(body)
headers = List.keystore(headers, "content-length", 0, {"content-length", Integer.to_char_list(String.length(body))})
{:ok, req} = :cowboy_req.reply(status, headers, body, req)
req
else
req
end
req
end
end