mirror of
https://git.rape.pet/ulith/amputoma.git
synced 2025-02-23 21:24:00 +01:00
reversed the reverse and made a whitelist blacklist white again
This commit is contained in:
parent
0af8e93135
commit
cc1dbe62cc
1 changed files with 1 additions and 1 deletions
|
@ -52,7 +52,7 @@ defmodule Pleroma.Web.MediaProxy do
|
|||
|
||||
@spec url_proxiable?(String.t()) :: boolean()
|
||||
def url_proxiable?(url) do
|
||||
not local?(url) and not whitelisted?(url) and not blocked?(url)
|
||||
not local?(url) and whitelisted?(url) and not blocked?(url)
|
||||
end
|
||||
|
||||
def preview_url(url, preview_params \\ []) do
|
||||
|
|
Loading…
Add table
Reference in a new issue