diff options
author | Mark Felder <feld@FreeBSd.org> | 2018-03-19 18:18:52 +0000 |
---|---|---|
committer | Mark Felder <feld@FreeBSd.org> | 2018-03-19 18:18:52 +0000 |
commit | 16d102c1533b3d95570bc1715d5d5b4b8e0c0058 (patch) | |
tree | 0df2d283eaf97cdb2b60b7600457578e3f076c76 /lib | |
parent | 96cfc67e053ecbb86d04d3579bc6c71dcd43fb85 (diff) | |
download | pleroma-16d102c1533b3d95570bc1715d5d5b4b8e0c0058.tar.gz |
Clarify that this error is about a problem decoding the expected JSON
payload
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/activity_pub/activity_pub.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/activity_pub/activity_pub.ex b/lib/pleroma/web/activity_pub/activity_pub.ex index e7484974e..6a78a6bee 100644 --- a/lib/pleroma/web/activity_pub/activity_pub.ex +++ b/lib/pleroma/web/activity_pub/activity_pub.ex @@ -301,7 +301,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do {:ok, data} <- Poison.decode(body) do user_data_from_user_object(data) else - e -> Logger.error("Could not user at fetch #{ap_id}, #{inspect(e)}") + e -> Logger.error("Could not decode user at fetch #{ap_id}, #{inspect(e)}") end end |