Transmogrifier: Only add context if it really is onne.

This commit is contained in:
lain 2020-03-31 19:16:45 +02:00
parent 51fc504705
commit ecac57732a
1 changed files with 4 additions and 7 deletions

View File

@ -1255,14 +1255,11 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
do: {:ok, data}
defp maybe_add_context_from_object(%{"object" => object} = data) when is_binary(object) do
if object = Object.normalize(object) do
data =
data
|> Map.put("context", object.data["context"])
{:ok, data}
with %{data: %{"context" => context}} when is_binary(context) <- Object.normalize(object) do
{:ok, Map.put(data, "context", context)}
else
{:error, "No context on referenced object"}
_ ->
{:error, :no_context}
end
end