logo

pleroma

My custom branche(s) on git.pleroma.social/pleroma/pleroma
commit: b35ff8f75592062dc8b6a4cc3a9ac0518b94b16a
parent: 9f417fd5e9893b095041702a6bd0190c7f1d7f22
Author: Roger Braun <rbraun@Bobble.local>
Date:   Mon, 23 Oct 2017 18:36:53 +0200

Use index in basic activity query.

Diffstat:

Mlib/pleroma/activity.ex4++--
1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lib/pleroma/activity.ex b/lib/pleroma/activity.ex @@ -38,7 +38,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