1
0
mirror of https://git.pleroma.social/sjw/pleroma.git synced 2024-12-28 16:15:07 +01:00

Use more efficient query.

This commit is contained in:
Roger Braun 2017-06-20 16:02:17 +02:00
parent fe27b61a72
commit 14a9dd468b

View File

@ -12,7 +12,7 @@ defmodule Pleroma.Activity do
def get_by_ap_id(ap_id) do
Repo.one(from activity in Activity,
where: fragment("? @> ?", activity.data, ^%{id: ap_id}))
where: fragment("(?)->>'id' = ?", activity.data, ^to_string(ap_id)))
end
def all_by_object_ap_id(ap_id) do