Use more efficient query.

This commit is contained in:
Roger Braun 2017-06-20 16:02:17 +02:00
parent fe27b61a72
commit 14a9dd468b
1 changed files with 1 additions and 1 deletions

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