Put objects in inserted activties into the db.

This commit is contained in:
Roger Braun 2017-03-30 18:07:01 +02:00
commit 6aa1523bb3
3 changed files with 10 additions and 1 deletions

View file

@ -8,6 +8,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
map = if map["object"] do
object = Map.put_new_lazy(map["object"], "id", &generate_object_id/0)
Repo.insert!(%Object{data: object})
Map.put(map, "object", object)
else
map