diff options
author | lain <lain@soykaf.club> | 2018-02-18 22:41:38 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2018-02-18 22:41:38 +0100 |
commit | dc1d3ceb724bb3a23e407ed2affa43e1a81d844d (patch) | |
tree | ac79876120bec241a1771423c208c5bf4ef1d5be | |
parent | e368b68dcfea8f12fe0343bd16b035272f67f615 (diff) | |
download | pleroma-dc1d3ceb724bb3a23e407ed2affa43e1a81d844d.tar.gz pleroma-dc1d3ceb724bb3a23e407ed2affa43e1a81d844d.zip |
Fix log.
-rw-r--r-- | lib/pleroma/web/activity_pub/activity_pub_controller.ex | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/lib/pleroma/web/activity_pub/activity_pub_controller.ex b/lib/pleroma/web/activity_pub/activity_pub_controller.ex index 7c4f7d249..8ba15d73e 100644 --- a/lib/pleroma/web/activity_pub/activity_pub_controller.ex +++ b/lib/pleroma/web/activity_pub/activity_pub_controller.ex @@ -43,9 +43,10 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubController do def inbox(conn, params) do Logger.info("Signature error.") - Logger.info(conn.req_headers) + Logger.info(inspect(conn.req_headers)) json(conn, "ok") end + def ap_enabled_actor(id) do user = User.get_by_ap_id(id) if User.ap_enabled?(user) do |