transmogrifier: Use the correct variable and prefer inspect in case of a bad type being passed on

This commit is contained in:
Haelwenn (lanodan) Monnier 2018-09-27 11:10:54 +02:00
parent d830a243a3
commit e53da692fb
No known key found for this signature in database
GPG key ID: D5B7A8E43C997DEE

View file

@ -126,12 +126,12 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
|> Map.put("context", replied_object.data["context"] || object["conversation"])
else
e ->
Logger.error("Couldn't fetch #{object["inReplyTo"]} #{inspect(e)}")
Logger.error("Couldn't fetch \"#{inspect(in_reply_to_id)}\", error: #{inspect(e)}")
object
end
e ->
Logger.error("Couldn't fetch #{object["inReplyTo"]} #{inspect(e)}")
Logger.error("Couldn't fetch \"#{inspect(in_reply_to_id)}\", error: #{inspect(e)}")
object
end
end