Skip to content
Snippets Groups Projects
Commit c95941e6 authored by kaniini's avatar kaniini
Browse files

activitypub transmogrifier: fix handling of contentMap.

parent 25946f77
Branches
No related tags found
No related merge requests found
......@@ -24,6 +24,7 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
|> fix_in_reply_to
|> fix_emoji
|> fix_tag
|> fix_content_map
end
def fix_in_reply_to(%{"inReplyTo" => in_reply_to_id} = object)
......@@ -107,6 +108,17 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
|> Map.put("tag", combined)
end
# content map usually only has one language so this will do for now.
def fix_content_map(%{"contentMap" => content_map} = object) do
content_groups = Map.to_list(content_map)
{_, content} = Enum.at(content_groups, 0)
object
|> Map.put("content", content)
end
def fix_content_map(object), do: object
# TODO: validate those with a Ecto scheme
# - tags
# - emoji
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment