A small patch to show the instance name and favicon in the browser title
[akkoma] / lib / pleroma / http / http.ex
1
2 defmodule Pleroma.HTTP do
3 use HTTPoison.Base
4
5 def process_request_options(options) do
6 config = Application.get_env(:pleroma, :http, [])
7 proxy = Keyword.get(config, :proxy_url, nil)
8 case proxy do
9 nil -> options
10 _ -> options ++ [proxy: proxy]
11 end
12 end
13
14 end