Skip to content
GitLab
Menu
Projects
Groups
Snippets
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pleroma
pleroma
Commits
a32e2390
Commit
a32e2390
authored
Dec 30, 2018
by
Rin Toshaka
Browse files
Use Object.change instead of Ecto.Changeset.change
parent
9a0163db
Changes
1
Hide whitespace changes
Inline
Side-by-side
lib/pleroma/web/common_api/utils.ex
View file @
a32e2390
...
...
@@ -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
.
Changese
t
.
change
(
activity
)
cng
=
Objec
t
.
change
(
activity
)
Repo
.
update
(
cng
)
scrubbed_html
else
...
...
Write
Preview
Supports
Markdown
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment