diff options
author | Maksim Pechnikov <parallel588@gmail.com> | 2019-11-19 20:19:41 +0300 |
---|---|---|
committer | Maksim Pechnikov <parallel588@gmail.com> | 2019-11-19 20:19:41 +0300 |
commit | 708fd234bdff5423ca6d8003232eca0df231bbc2 (patch) | |
tree | ce60d9a61e4abde5a18361fc2ea52f82c84278d6 /lib | |
parent | 7d727dbfecad8596c00e70c4bb22d1fcf8814710 (diff) | |
download | pleroma-708fd234bdff5423ca6d8003232eca0df231bbc2.tar.gz |
fix order favorites activites
Diffstat (limited to 'lib')
-rw-r--r-- | lib/pleroma/web/activity_pub/activity_pub.ex | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lib/pleroma/web/activity_pub/activity_pub.ex b/lib/pleroma/web/activity_pub/activity_pub.ex index f1ff0ee0d..6eb69e183 100644 --- a/lib/pleroma/web/activity_pub/activity_pub.ex +++ b/lib/pleroma/web/activity_pub/activity_pub.ex @@ -1066,7 +1066,7 @@ defmodule Pleroma.Web.ActivityPub.ActivityPub do |> Activity.with_joined_object() |> Object.with_joined_activity() |> select([_like, object, activity], %{activity | object: object}) - |> order_by([like, _, _], desc: like.updated_at) + |> order_by([like, _, _], desc: like.id) |> Pagination.fetch_paginated( Map.merge(params, %{"skip_order" => true}), pagination, |