Skip to content
Snippets Groups Projects
Unverified Commit f01310da authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix trending statuses returning more than one post by the same author (#19349)

parent 8a9d774a
No related branches found
No related tags found
No related merge requests found
......@@ -17,5 +17,5 @@ class StatusTrend < ApplicationRecord
belongs_to :status
belongs_to :account
scope :allowed, -> { where(allowed: true) }
scope :allowed, -> { joins('INNER JOIN (SELECT account_id, MAX(score) AS max_score FROM status_trends GROUP BY account_id) AS grouped_status_trends ON status_trends.account_id = grouped_status_trends.account_id AND status_trends.score = grouped_status_trends.max_score').where(allowed: true) }
end
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment