1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-12-27 21:45:25 +01:00

Remove handler for incoming undos with object references

This commit is contained in:
Francis Dinh 2018-05-19 21:34:30 -04:00
parent 1e43de0f86
commit 3b706ea493

View File

@ -259,13 +259,6 @@ defmodule Pleroma.Web.ActivityPub.Transmogrifier do
end
end
def handle_incoming(%{"type" => "Undo", "object" => object_id} = data) do
object = Object.get_by_ap_id(object_id).data
data = Map.put(data, "object", object)
handle_incoming(data)
end
def handle_incoming(
%{"type" => "Block", "object" => blocked, "actor" => blocker, "id" => id} = data
) do