Pleroma.Web.MastodonAPI.StatusView: Do not fail when URL isn’t a string

stable
Haelwenn (lanodan) Monnier 6 years ago
parent 33587f5cb4
commit 755f166406
No known key found for this signature in database
GPG Key ID: D5B7A8E43C997DEE

@ -240,7 +240,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusView 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…
Cancel
Save