Skip to content
Snippets Groups Projects
Verified Commit 3e50bb66 authored by Haelwenn's avatar Haelwenn
Browse files

Pleroma.Web.MastodonAPI.StatusView: Content isn’t nullable

parent cf6ed32c
No related branches found
No related tags found
No related merge requests found
......@@ -61,7 +61,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusView do
in_reply_to_id: nil,
in_reply_to_account_id: nil,
reblog: reblogged,
content: reblogged[:content],
content: reblogged[:content] || "",
created_at: created_at,
reblogs_count: 0,
replies_count: 0,
......@@ -230,7 +230,7 @@ defmodule Pleroma.Web.MastodonAPI.StatusView do
if !!name and name != "" do
"<p><a href=\"#{object["id"]}\">#{name}</a></p>#{object["content"]}"
else
object["content"]
object["content"] || ""
end
content
......@@ -243,11 +243,11 @@ defmodule Pleroma.Web.MastodonAPI.StatusView do
if !!summary and summary != "" and is_bitstring(object["url"]) do
"<p><a href=\"#{object["url"]}\">#{summary}</a></p>#{object["content"]}"
else
object["content"]
object["content"] || ""
end
content
end
def render_content(object), do: object["content"]
def render_content(object), do: object["content"] || ""
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment