Merge remote-tracking branch 'upstream/develop' into pr-upstream-http-proxy
[akkoma] / lib / pleroma / activity.ex
index d7e31b6b4cdfe92a42ff59abe1ee30bf7b77888d..afd09982fcd45211249c0c4cac75f80fefaf65db 100644 (file)
@@ -6,7 +6,8 @@ defmodule Pleroma.Activity do
   schema "activities" do
     field :data, :map
     field :local, :boolean, default: true
-    has_many :notifications, Notification
+    field :actor, :string
+    has_many :notifications, Notification, on_delete: :delete_all
 
     timestamps()
   end
@@ -38,7 +39,7 @@ defmodule Pleroma.Activity do
 
   def get_create_activity_by_object_ap_id(ap_id) do
     Repo.one(from activity in Activity,
-      where: fragment("(?)->'object'->>'id' = ?", activity.data, ^to_string(ap_id))
-             and fragment("(?)->>'type' = 'Create'", activity.data))
+      where: fragment("coalesce((?)->'object'->>'id', (?)->>'object') = ?", activity.data, activity.data, ^to_string(ap_id)),
+      where: fragment("(?)->>'type' = 'Create'", activity.data))
   end
 end