Skip to content
Snippets Groups Projects
Commit 678dd4c8 authored by lain's avatar lain
Browse files

Use desc id to sort instead of desc inserted_at

Should mean the same and is indexed.
parent 003cb17b
Branches
No related tags found
No related merge requests found
......@@ -97,7 +97,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
def fetch_activities_for_context(context) do
query = from activity in Activity,
where: fragment("?->>'type' = ? and ?->>'context' = ?", activity.data, "Create", activity.data, ^context),
order_by: [desc: :inserted_at]
order_by: [desc: :id]
Repo.all(query)
end
......
......@@ -152,7 +152,7 @@ defmodule Pleroma.Web.ActivityPub.Utils do
query = from activity in Activity,
where: fragment("? @> ?", activity.data, ^%{type: "Follow", actor: follower_id,
object: followed_id}),
order_by: [desc: :inserted_at],
order_by: [desc: :id],
limit: 1
Repo.one(query)
end
......
......@@ -21,7 +21,7 @@ defmodule Pleroma.Web.OStatus.OStatusController do
query = from activity in Activity,
where: fragment("?->>'actor' = ?", activity.data, ^user.ap_id),
limit: 20,
order_by: [desc: :inserted_at]
order_by: [desc: :id]
activities = query
|> Repo.all
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment