X-Git-Url: https://git.squeep.com/?a=blobdiff_plain;f=lib%2Fpleroma%2Fweb%2Factivity_pub%2Fside_effects.ex;h=7eae0c52ccf906cff1b00ab6b14a0255e52f3d9c;hb=d7a57004ef975e2cf02facb9d80cff287a5d6d3b;hp=bc0d31c456770a180e7db9ed0cd5109a400f92eb;hpb=e42bc5f55732d42bf40ed9129ec737e654a911b8;p=akkoma diff --git a/lib/pleroma/web/activity_pub/side_effects.ex b/lib/pleroma/web/activity_pub/side_effects.ex index bc0d31c45..7eae0c52c 100644 --- a/lib/pleroma/web/activity_pub/side_effects.ex +++ b/lib/pleroma/web/activity_pub/side_effects.ex @@ -30,11 +30,14 @@ defmodule Pleroma.Web.ActivityPub.SideEffects do # Tasks this handles: # - Add announce to object # - Set up notification + # - Stream out the announce def handle(%{data: %{"type" => "Announce"}} = object, meta) do announced_object = Object.get_by_ap_id(object.data["object"]) + Utils.add_announce_to_object(object, announced_object) Notification.create_notifications(object) + ActivityPub.stream_out(object) {:ok, object, meta} end