From f01310dadbca94c74aa44e0a4725d49c5ac15434 Mon Sep 17 00:00:00 2001 From: Eugen Rochko Date: Fri, 14 Oct 2022 01:44:23 +0200 Subject: [PATCH] Fix trending statuses returning more than one post by the same author (#19349) --- app/models/status_trend.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/models/status_trend.rb b/app/models/status_trend.rb index 33fd6b0043..b0f1b6942d 100644 --- a/app/models/status_trend.rb +++ b/app/models/status_trend.rb @@ -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