mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
Improve consistency of return types for cowboy_req API
The signature of parse_header, body_qs, multipart_data and the set_resp_* functions has changed. See the cowboy_req module edoc for more details.
This commit is contained in:
parent
e13ab806ea
commit
8d5f8db90a
9 changed files with 116 additions and 103 deletions
|
@ -17,7 +17,7 @@ handle(Req, State) ->
|
|||
{ok, Req4, State}.
|
||||
|
||||
maybe_echo('POST', true, Req) ->
|
||||
{PostVals, Req2} = cowboy_req:body_qs(Req),
|
||||
{ok, PostVals, Req2} = cowboy_req:body_qs(Req),
|
||||
Echo = proplists:get_value(<<"echo">>, PostVals),
|
||||
echo(Echo, Req2);
|
||||
maybe_echo('POST', false, Req) ->
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue