Change reblogs to not count towards hashtag trends anymore (#17501)

This commit is contained in:
Eugen Rochko 2022-02-11 21:16:23 +01:00 committed by GitHub
parent a131f06e12
commit a27729ee48
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 5 deletions

View File

@ -11,12 +11,9 @@ class Trends::Tags < Trends::Base
}
def register(status, at_time = Time.now.utc)
original_status = status.reblog? ? status.reblog : status
return unless !status.reblog? && status.public_visibility? && !status.account.silenced?
return unless original_status.public_visibility? && status.public_visibility? &&
!original_status.account.silenced? && !status.account.silenced?
original_status.tags.each do |tag|
status.tags.each do |tag|
add(tag, status.account_id, at_time) if tag.usable?
end
end