forked from AkkomaGang/akkoma
Object.Fetcher: Handle error on Containment.contain_origin/2
This commit is contained in:
parent
f00562ed6b
commit
40d0a198e2
1 changed files with 4 additions and 0 deletions
|
@ -38,6 +38,7 @@ def fetch_object_from_id(id, options \\ []) do
|
|||
"type" => "Create",
|
||||
"to" => data["to"],
|
||||
"cc" => data["cc"],
|
||||
# TODO: Should we seriously keep this attributedTo thing?
|
||||
"actor" => data["actor"] || data["attributedTo"],
|
||||
"object" => data
|
||||
},
|
||||
|
@ -56,6 +57,9 @@ def fetch_object_from_id(id, options \\ []) do
|
|||
object = %Object{} ->
|
||||
{:ok, object}
|
||||
|
||||
:error ->
|
||||
{:error, "Object containment failed."}
|
||||
|
||||
_e ->
|
||||
Logger.info("Couldn't get object via AP, trying out OStatus fetching...")
|
||||
|
||||
|
|
Loading…
Reference in a new issue