From: Mark Felder Date: Mon, 19 Mar 2018 18:18:52 +0000 (+0000) Subject: Clarify that this error is about a problem decoding the expected JSON X-Git-Url: http://git.squeep.com/?a=commitdiff_plain;h=16d102c1533b3d95570bc1715d5d5b4b8e0c0058;p=akkoma Clarify that this error is about a problem decoding the expected JSON payload --- 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