aboutsummaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
Diffstat (limited to 'lib')
-rw-r--r--lib/pleroma/activity.ex5
1 files changed, 3 insertions, 2 deletions
diff --git a/lib/pleroma/activity.ex b/lib/pleroma/activity.ex
index f48199cae..40e14005b 100644
--- a/lib/pleroma/activity.ex
+++ b/lib/pleroma/activity.ex
@@ -17,11 +17,12 @@ defmodule Pleroma.Activity do
def all_by_object_ap_id(ap_id) do
Repo.all(from activity in Activity,
- where: fragment("? @> ?", activity.data, ^%{object: %{id: ap_id}}))
+ where: fragment("(?)->'object'->>'id' = ?", activity.data, ^to_string(ap_id)))
end
def get_create_activity_by_object_ap_id(ap_id) do
Repo.one(from activity in Activity,
- where: fragment("? @> ?", activity.data, ^%{type: "Create", object: %{id: ap_id}}))
+ where: fragment("(?)->'object'->>'id' = ?", activity.data, ^to_string(ap_id))
+ and fragment("(?)->>'type' = 'Create'", activity.data))
end
end