diff --git a/lib/httparrot/cookies_handler.ex b/lib/httparrot/cookies_handler.ex index c092d78..090b09c 100644 --- a/lib/httparrot/cookies_handler.ex +++ b/lib/httparrot/cookies_handler.ex @@ -10,7 +10,7 @@ defmodule HTTParrot.CookiesHandler do def get_json(req, state) do {cookies, req} = :cowboy_req.cookies(req) - if cookies == [], do: cookies = [{}] + cookies = if cookies == [], do: [{}], else: cookies {response(cookies), req, state} end diff --git a/lib/httparrot/stream_bytes_handler.ex b/lib/httparrot/stream_bytes_handler.ex index 42e8d29..d25e207 100644 --- a/lib/httparrot/stream_bytes_handler.ex +++ b/lib/httparrot/stream_bytes_handler.ex @@ -25,13 +25,13 @@ defmodule HTTParrot.StreamBytesHandler do def get_bytes(req, state) do {n, seed, chunk_size} = state - :random.seed(seed, seed, seed) + :rand.seed(:exs64, {seed, seed, seed}) {{:chunked, stream_response(n, chunk_size)}, req, nil} end defp stream_response(n, chunk_size) do fn(send_func) -> - Stream.repeatedly(fn -> :random.uniform(255) end) + Stream.repeatedly(fn -> :rand.uniform(255) end) |> Stream.take(n) |> Enum.chunk(chunk_size, chunk_size, []) |> Enum.each(fn chunk ->