mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 10:09:02 +00:00
twitter api: refactor activity html generation, add support for Articles
This commit is contained in:
parent
3b799f22b7
commit
152a526237
|
@ -262,7 +262,6 @@ defmodule Pleroma.Web.TwitterAPI.ActivityView do
|
||||||
|
|
||||||
def render_content(%{"type" => "Note"} = object) do
|
def render_content(%{"type" => "Note"} = object) do
|
||||||
summary = object["summary"]
|
summary = object["summary"]
|
||||||
|
|
||||||
content =
|
content =
|
||||||
if !!summary and summary != "" do
|
if !!summary and summary != "" do
|
||||||
"<p>#{summary}</p>#{object["content"]}"
|
"<p>#{summary}</p>#{object["content"]}"
|
||||||
|
@ -275,7 +274,6 @@ defmodule Pleroma.Web.TwitterAPI.ActivityView do
|
||||||
|
|
||||||
def render_content(%{"type" => "Article"} = object) do
|
def render_content(%{"type" => "Article"} = object) do
|
||||||
summary = object["name"] || object["summary"]
|
summary = object["name"] || object["summary"]
|
||||||
|
|
||||||
content =
|
content =
|
||||||
if !!summary and summary != "" do
|
if !!summary and summary != "" do
|
||||||
"<p><a href=\"#{object["url"]}\">#{summary}</a></p>#{object["content"]}"
|
"<p><a href=\"#{object["url"]}\">#{summary}</a></p>#{object["content"]}"
|
||||||
|
|
Loading…
Reference in a new issue