Order conversation fetches like GS does.
This commit is contained in:
parent
6a44427915
commit
d4de38e8ff
3 changed files with 5 additions and 4 deletions
|
|
@ -77,7 +77,8 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do
|
|||
|
||||
def fetch_activities_for_context(context) do
|
||||
query = from activity in Activity,
|
||||
where: fragment("? @> ?", activity.data, ^%{ context: context })
|
||||
where: fragment("? @> ?", activity.data, ^%{ context: context }),
|
||||
order_by: [desc: :inserted_at]
|
||||
Repo.all(query)
|
||||
end
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue