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
1 changed files with 0 additions and 7 deletions

View File

@ -259,13 +259,6 @@ def handle_incoming(
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