Browse Source

Sort self-replies to the top of the thread (#9296)

Fix #6463
pull/4/head
Eugen Rochko 5 years ago
committed by GitHub
parent
commit
074960bb0f
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions
  1. +3
    -0
      app/models/concerns/status_threading_concern.rb

+ 3
- 0
app/models/concerns/status_threading_concern.rb View File

@ -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…
Cancel
Save