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

Remove unsafe variable warning

This commit is contained in:
optikfluffel 2016-06-22 21:14:18 +02:00
parent d4e826cd5b
commit 62f01ffd9a

View file

@ -58,13 +58,14 @@ defmodule HTTParrot do
def stop(_State), do: :ok
def prettify_json(status, headers, body, req) do
if JSX.is_json? body 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
case JSX.is_json?(body) do
true ->
body = JSX.prettify!(body)
headers = List.keystore(headers, "content-length", 0, {"content-length", Integer.to_char_list(String.length(body))})
{:ok, pretty_req} = :cowboy_req.reply(status, headers, body, req)
pretty_req
_ ->
req
end
end
end