From: lain Date: Wed, 21 Mar 2018 06:12:14 +0000 (+0100) Subject: Fetch relayed messages from source while we don't have linked data sigs. X-Git-Url: https://git.squeep.com/?a=commitdiff_plain;h=c50c7745bc8b8f52ba07c69c0d2505df54da0f59;p=akkoma Fetch relayed messages from source while we don't have linked data sigs. --- diff --git a/lib/pleroma/web/activity_pub/activity_pub_controller.ex b/lib/pleroma/web/activity_pub/activity_pub_controller.ex index 85fc95427..b9a70a33f 100644 --- a/lib/pleroma/web/activity_pub/activity_pub_controller.ex +++ b/lib/pleroma/web/activity_pub/activity_pub_controller.ex @@ -36,7 +36,8 @@ defmodule Pleroma.Web.ActivityPub.ActivityPubController do def inbox(conn, params) do headers = Enum.into(conn.req_headers, %{}) if !(String.contains?(headers["signature"] || "", params["actor"])) do - Logger.info("Signature not from author, relayed message, ignoring") + Logger.info("Signature not from author, relayed message, fetching from source") + ActivityPub.fetch_object_from_id(params["object"]["id"]) else Logger.info("Signature error") Logger.info("Could not validate #{params["actor"]}")