Browse Source

Transmogrifier: Only add context if it really is onne.

debug-remote-ip
lain 4 years ago
parent
commit
ecac57732a
1 changed files with 4 additions and 7 deletions
  1. +4
    -7
      lib/pleroma/web/activity_pub/transmogrifier.ex

+ 4
- 7
lib/pleroma/web/activity_pub/transmogrifier.ex 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



Loading…
Cancel
Save