Do not refetch local objects

develop
rinpatch 2019-09-18 19:59:23 +03:00
parent eb87a86b5b
commit c096dd86e5
1 changed files with 3 additions and 1 deletions

View File

@ -48,10 +48,12 @@ defmodule Pleroma.Object.Fetcher do
end
def refetch_object(%Object{data: %{"id" => id}} = object) do
with {:ok, data} <- fetch_and_contain_remote_object_from_id(id),
with {:local, false} <- {:local, String.starts_with?(id, Pleroma.Web.base_url() <> "/")},
{:ok, data} <- fetch_and_contain_remote_object_from_id(id),
{:ok, object} <- reinject_object(object, data) do
{:ok, object}
else
{:local, true} -> object
e -> {:error, e}
end
end