diff options
| -rw-r--r-- | lib/pleroma/http/http.ex | 3 | 
1 files changed, 2 insertions, 1 deletions
| diff --git a/lib/pleroma/http/http.ex b/lib/pleroma/http/http.ex index c19bccf60..f222e1774 100644 --- a/lib/pleroma/http/http.ex +++ b/lib/pleroma/http/http.ex @@ -19,9 +19,10 @@ defmodule Pleroma.HTTP do      end    end -  def process_request_options(options) do +  defp process_request_options(options) do      config = Application.get_env(:pleroma, :http, [])      proxy = Keyword.get(config, :proxy_url, nil) +    options = options ++ [hackney: [pool: :default]]      case proxy do        nil -> options | 
