Fix some stupid typos
This commit is contained in:
parent
a32e23905a
commit
66d1c31461
@ -281,13 +281,13 @@ defmodule Pleroma.Web.CommonAPI.Utils do
|
|||||||
|
|
||||||
{new_scrubber_cache, scrubbed_html} =
|
{new_scrubber_cache, scrubbed_html} =
|
||||||
Enum.map_reduce(scrubber_cache, nil, fn %{
|
Enum.map_reduce(scrubber_cache, nil, fn %{
|
||||||
:scrubbers => current_key,
|
"scrubbers" => current_key,
|
||||||
:content => current_content
|
"content" => current_content
|
||||||
},
|
} = current_element,
|
||||||
_ ->
|
_content ->
|
||||||
if Map.keys(current_key) == Map.keys(key) do
|
if Map.keys(current_key) == Map.keys(key) do
|
||||||
if scrubbers == key do
|
if current_key == key do
|
||||||
{current_key, current_content}
|
{current_element, current_content}
|
||||||
else
|
else
|
||||||
# Remove the entry if scrubber version is outdated
|
# Remove the entry if scrubber version is outdated
|
||||||
{nil, nil}
|
{nil, nil}
|
||||||
@ -296,20 +296,10 @@ defmodule Pleroma.Web.CommonAPI.Utils do
|
|||||||
end)
|
end)
|
||||||
|
|
||||||
new_scrubber_cache = Enum.reject(new_scrubber_cache, &is_nil/1)
|
new_scrubber_cache = Enum.reject(new_scrubber_cache, &is_nil/1)
|
||||||
|
if scrubbed_html == nil or new_scrubber_cache != scrubber_cache do
|
||||||
if !(new_scrubber_cache == scrubber_cache) or scrubbed_html == nil do
|
|
||||||
scrubbed_html = HTML.filter_tags(content, scrubbers)
|
scrubbed_html = HTML.filter_tags(content, scrubbers)
|
||||||
new_scrubber_cache = [%{:scrubbers => key, :content => scrubbed_html} | new_scrubber_cache]
|
new_scrubber_cache = [%{:scrubbers => key, :content => scrubbed_html} | new_scrubber_cache]
|
||||||
|
update_scrubber_cache(activity, new_scrubber_cache)
|
||||||
activity =
|
|
||||||
Map.put(
|
|
||||||
activity,
|
|
||||||
:data,
|
|
||||||
Kernel.put_in(activity.data, ["object", "scrubber_cache"], new_scrubber_cache)
|
|
||||||
)
|
|
||||||
|
|
||||||
cng = Object.change(activity)
|
|
||||||
Repo.update(cng)
|
|
||||||
scrubbed_html
|
scrubbed_html
|
||||||
else
|
else
|
||||||
scrubbed_html
|
scrubbed_html
|
||||||
@ -321,4 +311,9 @@ defmodule Pleroma.Web.CommonAPI.Utils do
|
|||||||
Map.put(acc, to_string(scrubber), scrubber.version)
|
Map.put(acc, to_string(scrubber), scrubber.version)
|
||||||
end)
|
end)
|
||||||
end
|
end
|
||||||
|
|
||||||
|
defp update_scrubber_cache(activity, scrubber_cache) do
|
||||||
|
cng = Object.change(activity, %{data: Kernel.put_in(activity.data, ["object", "scrubber_cache"], scrubber_cache)})
|
||||||
|
{:ok, _struct} = Repo.update(cng)
|
||||||
|
end
|
||||||
end
|
end
|
||||||
|
Loading…
Reference in New Issue
Block a user