use nil instead of empty string

This commit is contained in:
Jeff Becker 2018-01-29 10:06:16 -05:00
parent dffde6631d
commit 066fe1a697
No known key found for this signature in database
GPG Key ID: F357B3B42F6F9B05
2 changed files with 3 additions and 3 deletions

View File

@ -42,7 +42,7 @@ version = with {version, 0} <- System.cmd("git", ["rev-parse", "HEAD"]) do
# Configures http settings, upstream proxy etc.
config :pleroma, :http,
proxy_url: ""
proxy_url: nil
config :pleroma, :instance,
version: version,

View File

@ -4,9 +4,9 @@ defmodule Pleroma.HTTP do
def process_request_options(options) do
config = Application.get_env(:pleroma, :http, [])
proxy = Keyword.get(config, :proxy_url, "")
proxy = Keyword.get(config, :proxy_url, nil)
case proxy do
"" -> options
nil -> options
_ -> options ++ [proxy: proxy]
end
end