forked from AkkomaGang/akkoma
Logging.
This commit is contained in:
parent
67afd024a7
commit
a06b9a3e0b
1 changed files with 1 additions and 0 deletions
|
@ -324,6 +324,7 @@ def fetch_object_from_id(id) do
|
|||
if object = Object.get_cached_by_ap_id(id) do
|
||||
{:ok, object}
|
||||
else
|
||||
Logger.info("Fetching #{id} via AP")
|
||||
with {:ok, %{body: body, status_code: code}} when code in 200..299 <- @httpoison.get(id, [Accept: "application/activity+json"], follow_redirect: true, timeout: 10000, recv_timeout: 20000),
|
||||
{:ok, data} <- Poison.decode(body),
|
||||
nil <- Object.get_by_ap_id(data["id"]),
|
||||
|
|
Loading…
Reference in a new issue