1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2024-11-19 11:29:17 +00:00
akkoma/lib/pleroma/http/http.ex

14 lines
288 B
Elixir
Raw Normal View History

defmodule Pleroma.HTTP do
use HTTPoison.Base
def process_request_options(options) do
config = Application.get_env(:pleroma, :http, [])
2018-01-29 15:06:16 +00:00
proxy = Keyword.get(config, :proxy_url, nil)
2018-03-30 14:01:53 +01:00
case proxy do
2018-01-29 15:06:16 +00:00
nil -> options
_ -> options ++ [proxy: proxy]
end
end
end