forked from AkkomaGang/akkoma
Merge branch 'hotfix/activity-without-content' into 'develop'
Twitter ActivityView: fix crash with activity without content See merge request pleroma/pleroma!572
This commit is contained in:
commit
a3e33fa177
1 changed files with 5 additions and 3 deletions
|
@ -245,9 +245,11 @@ def render(
|
||||||
|> Formatter.emojify(object["emoji"])
|
|> Formatter.emojify(object["emoji"])
|
||||||
|
|
||||||
text =
|
text =
|
||||||
|
if content do
|
||||||
content
|
content
|
||||||
|> String.replace(~r/<br\s?\/?>/, "\n")
|
|> String.replace(~r/<br\s?\/?>/, "\n")
|
||||||
|> HTML.strip_tags()
|
|> HTML.strip_tags()
|
||||||
|
end
|
||||||
|
|
||||||
reply_parent = Activity.get_in_reply_to_activity(activity)
|
reply_parent = Activity.get_in_reply_to_activity(activity)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue