Merge branch 'fix/tesla-client-opts' into 'develop'

Pass options without adapter key in tesla reverse proxy client

See merge request pleroma/pleroma!2985
This commit is contained in:
rinpatch 2020-09-10 17:41:37 +00:00
commit 9b6ab32166
1 changed files with 1 additions and 1 deletions

View File

@ -28,7 +28,7 @@ defmodule Pleroma.ReverseProxy.Client.Tesla do
url,
body,
headers,
Keyword.put(opts, :adapter, opts)
opts
) do
if is_map(response.body) and method != :head do
{:ok, response.status, response.headers, response.body}