diff --git a/app/models/status.rb b/app/models/status.rb index 6f4c94ce..fddc9229 100644 --- a/app/models/status.rb +++ b/app/models/status.rb @@ -85,7 +85,7 @@ class Status < ApplicationRecord default_scope { recent } - scope :recent, -> { reorder(id: :desc) } + scope :recent, -> { reorder(updated_at: :desc) } scope :remote, -> { where(local: false).or(where.not(uri: nil)) } scope :local, -> { where(local: true).or(where(uri: nil)) }