Order outbox by published, not id #171

Merged
dessalines merged 1 commits from outbox-order-published into main 2021-02-22 20:37:13 +00:00
1 changed files with 1 additions and 1 deletions

View File

@ -111,7 +111,7 @@ impl Activity_ for Activity {
.sql(" AND activity.data -> 'object' -> 'object' ->> 'type' = 'Page'")
.sql(" AND activity.data ->> 'actor' = ")
.bind::<Text, _>(community_actor_id)
.sql(" ORDER BY activity.id DESC"),
.sql(" ORDER BY activity.published DESC"),
)
.limit(20)
.get_results(conn)?;