1
0
Fork 1
mirror of https://akkoma.dev/AkkomaGang/akkoma.git synced 2025-01-22 14:30:16 +00:00

Fetcher: fix local check returning unwrapped object

This resulted in error messages about failed refetches being logged.
This commit is contained in:
rinpatch 2019-11-07 01:40:55 +03:00
parent 802d249827
commit 32afa07995

View file

@ -54,7 +54,7 @@ def refetch_object(%Object{data: %{"id" => id}} = object) do
{:ok, object} <- reinject_object(object, data) do
{:ok, object}
else
{:local, true} -> object
{:local, true} -> {:ok, object}
e -> {:error, e}
end
end