forked from AkkomaGang/akkoma
Pleroma.Web.MastodonAPI.StatusView: Do not fail when URL isn’t a string
This commit is contained in:
parent
33587f5cb4
commit
755f166406
1 changed files with 1 additions and 1 deletions
|
@ -240,7 +240,7 @@ def render_content(%{"type" => "Article"} = object) do
|
|||
summary = object["name"]
|
||||
|
||||
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