Merge branch 'remote-fetcher-error' into 'develop'

RemoteFetcherWorker: Make sure {:error, _} is returned on failure

See merge request pleroma/pleroma!4077
This commit is contained in:
Haelwenn 2024-02-24 11:37:34 +00:00
commit 03e54aaba9
2 changed files with 5 additions and 2 deletions

View file

View file

@ -22,8 +22,11 @@ defmodule Pleroma.Workers.RemoteFetcherWorker do
{:error, :allowed_depth} ->
{:discard, :allowed_depth}
_ ->
:error
{:error, _} = e ->
e
e ->
{:error, e}
end
end