fix(activitypub): make relay outbox events ordered by desc publication date

Signed-off-by: Thomas Citharel <tcit@tcit.fr>
This commit is contained in:
Thomas Citharel 2023-12-20 09:24:48 +01:00
parent 31411bfc03
commit e73fd9b370
No known key found for this signature in database
GPG key ID: A061B9DDE0CA0773

View file

@ -135,7 +135,7 @@ defmodule Mobilizon.Federation.ActivityPub do
%Page{total: total_events, elements: events} = %Page{total: total_events, elements: events} =
if actor_id == relay_actor_id do if actor_id == relay_actor_id do
Events.list_public_local_events(page, limit) Events.list_public_local_events(page, limit, :publish_at, :desc)
else else
Events.list_public_events_for_actor(actor, page, limit) Events.list_public_events_for_actor(actor, page, limit)
end end