forked from AkkomaGang/akkoma
Merge branch 'hotfix/prismo-twitterapi' into 'develop'
Pleroma.Web.TwitterAPI.ActivityView: Harden TwitterAPI against remnant of prismo Closes #353 See merge request pleroma/pleroma!415
This commit is contained in:
commit
f114f84324
1 changed files with 1 additions and 1 deletions
|
@ -287,7 +287,7 @@ def render_content(%{"type" => object_type} = object) when object_type in ["Arti
|
|||
summary = object["name"] || object["summary"]
|
||||
|
||||
content =
|
||||
if !!summary and summary != "" do
|
||||
if !!summary and summary != "" and is_bitstring(object["url"]) do
|
||||
"<p><a href=\"#{object["url"]}\">#{summary}</a></p>#{object["content"]}"
|
||||
else
|
||||
object["content"]
|
||||
|
|
Loading…
Reference in a new issue