object fetcher: fix up error handling

This commit is contained in:
Ariadne Conill 2019-10-18 02:42:25 +00:00
parent af9aa8e358
commit 6f110fc04c
1 changed files with 2 additions and 2 deletions

View File

@ -162,8 +162,8 @@ defmodule Pleroma.Object.Fetcher do
{:ok, %{status: code}} when code in [404, 410] ->
{:error, "Object has been deleted"}
_ ->
{:error, "Could not fetch by AP id"}
e ->
{:error, e}
end
end