forked from AkkomaGang/akkoma
Pleroma.Web.TwitterAPI.ActivityView: Harden TwitterAPI against remnant of prismo
This commit is contained in:
parent
4fab4e9ba4
commit
3c7d4ff271
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