mirror of
https://github.com/ninenines/cowboy.git
synced 2025-07-14 12:20:24 +00:00
Add missing clause to cowboy_req:has_resp_body/1
This commit is contained in:
parent
42e3468fec
commit
9d7f909923
1 changed files with 2 additions and 0 deletions
|
@ -865,6 +865,8 @@ has_resp_header(Name, #http_req{resp_headers=RespHeaders}) ->
|
|||
|
||||
%% @doc Return whether a body has been set for the response.
|
||||
-spec has_resp_body(req()) -> boolean().
|
||||
has_resp_body(#http_req{resp_body=RespBody}) when is_function(RespBody) ->
|
||||
true;
|
||||
has_resp_body(#http_req{resp_body={Length, _}}) ->
|
||||
Length > 0;
|
||||
has_resp_body(#http_req{resp_body=RespBody}) ->
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue