mirror of
https://git.pleroma.social/pleroma/pleroma.git
synced 2025-01-09 00:35:30 +00:00
Log but ignore signature errors.
This commit is contained in:
parent
76e71f47d3
commit
e368b68dcf
1 changed files with 5 additions and 0 deletions
|
@ -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
|
||||
|
|
Loading…
Reference in a new issue