Formatting
[akkoma] / lib / pleroma / web / media_proxy.ex
index 2793cabc1d405ed3bbe00730168f566a37e9b744..cbe7175848deb5d3fc4ee2dddedd5ce42de4bf01 100644 (file)
@@ -69,7 +69,7 @@ defmodule Pleroma.Web.MediaProxy do
   #   non-local non-whitelisted URLs through it and be sure that body size constraint is preserved.
   def preview_enabled?, do: enabled?() and !!Config.get([:media_preview_proxy, :enabled])
 
-  def local?(url), do: String.starts_with?(url, Pleroma.Web.base_url())
+  def local?(url), do: String.starts_with?(url, Upload.base_url())
 
   def whitelisted?(url) do
     %{host: domain} = URI.parse(url)
@@ -79,13 +79,14 @@ defmodule Pleroma.Web.MediaProxy do
       |> Config.get()
       |> Enum.map(&maybe_get_domain_from_url/1)
 
-    whitelist_domains =
-      if base_url = Config.get([Upload, :base_url]) do
-        %{host: base_domain} = URI.parse(base_url)
-        [base_domain | mediaproxy_whitelist_domains]
-      else
-        mediaproxy_whitelist_domains
-      end
+    whitelist_domains = base_url = Upload.base_url()
+
+    if Web.base_url() == base_url do
+      mediaproxy_whitelist_domains
+    else
+      %{host: base_domain} = URI.parse(base_url)
+      [base_domain | mediaproxy_whitelist_domains]
+    end
 
     domain in whitelist_domains
   end