diff options
author | lain <lain@soykaf.club> | 2018-02-18 22:40:08 +0100 |
---|---|---|
committer | lain <lain@soykaf.club> | 2018-02-18 22:40:08 +0100 |
commit | e368b68dcfea8f12fe0343bd16b035272f67f615 (patch) | |
tree | c2debd3ac158bcc216377cf983fa84a9e2e23fad | |
parent | 76e71f47d3324e2718c37713a5ee03d9e3f2b7fa (diff) | |
download | pleroma-e368b68dcfea8f12fe0343bd16b035272f67f615.tar.gz pleroma-e368b68dcfea8f12fe0343bd16b035272f67f615.zip |
Log but ignore signature errors.
-rw-r--r-- | lib/pleroma/web/activity_pub/activity_pub_controller.ex | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/lib/pleroma/web/activity_pub/activity_pub_controller.ex b/lib/pleroma/web/activity_pub/activity_pub_controller.ex index da4973fe5..7c4f7d249 100644 --- a/lib/pleroma/web/activity_pub/activity_pub_controller.ex +++ b/lib/pleroma/web/activity_pub/activity_pub_controller.ex @@ -41,6 +41,11 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubController do end end + def inbox(conn, params) do + Logger.info("Signature error.") + Logger.info(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 |