forked from AkkomaGang/akkoma
Use Object.change instead of Ecto.Changeset.change
This commit is contained in:
parent
9a0163db53
commit
a32e23905a
1 changed files with 1 additions and 2 deletions
|
@ -300,7 +300,6 @@ def get_scrubbed_html(
|
|||
if !(new_scrubber_cache == scrubber_cache) or scrubbed_html == nil do
|
||||
scrubbed_html = HTML.filter_tags(content, scrubbers)
|
||||
new_scrubber_cache = [%{:scrubbers => key, :content => scrubbed_html} | new_scrubber_cache]
|
||||
IO.puts(activity)
|
||||
|
||||
activity =
|
||||
Map.put(
|
||||
|
@ -309,7 +308,7 @@ def get_scrubbed_html(
|
|||
Kernel.put_in(activity.data, ["object", "scrubber_cache"], new_scrubber_cache)
|
||||
)
|
||||
|
||||
cng = Ecto.Changeset.change(activity)
|
||||
cng = Object.change(activity)
|
||||
Repo.update(cng)
|
||||
scrubbed_html
|
||||
else
|
||||
|
|
Loading…
Reference in a new issue