mirror of
https://akkoma.dev/AkkomaGang/akkoma.git
synced 2024-11-10 11:19:19 +00:00
Don't strip newlines in the Atom feed
This commit is contained in:
parent
889b57df82
commit
6116f81546
1 changed files with 1 additions and 3 deletions
|
@ -78,9 +78,7 @@ defmodule Pleroma.Web.Feed.FeedView do
|
||||||
end
|
end
|
||||||
|
|
||||||
def activity_content(%{"content" => content}) do
|
def activity_content(%{"content" => content}) do
|
||||||
content
|
escape(content)
|
||||||
|> String.replace(~r/[\n\r]/, "")
|
|
||||||
|> escape()
|
|
||||||
end
|
end
|
||||||
|
|
||||||
def activity_content(_), do: ""
|
def activity_content(_), do: ""
|
||||||
|
|
Loading…
Reference in a new issue