Sort self-replies to the top of the thread (#9296)
Fix #6463remotes/1727458204337373841/tmp_refs/heads/signup-info-prompt
parent
8069fd636b
commit
074960bb0f
|
@ -86,6 +86,9 @@ module StatusThreadingConcern
|
|||
|
||||
# Order ancestors/descendants by tree path
|
||||
statuses.sort_by! { |status| ids.index(status.id) }
|
||||
|
||||
# Bring self-replies to the top
|
||||
statuses.sort_by! { |status| status.in_reply_to_account_id == status.account_id ? -1 : 0 }
|
||||
end
|
||||
|
||||
def relations_map_for_account(account, account_ids, domains)
|
||||
|
|
Loading…
Reference in New Issue