This commit is contained in:
Alex S 2019-08-08 20:08:10 +03:00 committed by Ariadne Conill
parent 1f6b2a3d43
commit 33e7657fcc
1 changed files with 2 additions and 2 deletions

View File

@ -26,14 +26,14 @@ defmodule Pleroma.ReverseProxy.Client.Tesla do
end
end
defp read_chunk!(client) do
defp read_chunk!(%{pid: pid, stream: stream, opts: opts}) do
adapter = Application.get_env(:tesla, :adapter)
unless adapter in @adapters do
raise "#{adapter} doesn't support reading body in chunks"
end
adapter.read_chunk(client)
adapter.read_chunk(pid, stream, opts)
end
def close(client) do