Change reblogs to not count towards hashtag trends anymore (#17501)
This commit is contained in:
parent
a131f06e12
commit
a27729ee48
1 changed files with 2 additions and 5 deletions
|
@ -11,12 +11,9 @@ class Trends::Tags < Trends::Base
|
||||||
}
|
}
|
||||||
|
|
||||||
def register(status, at_time = Time.now.utc)
|
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? &&
|
status.tags.each do |tag|
|
||||||
!original_status.account.silenced? && !status.account.silenced?
|
|
||||||
|
|
||||||
original_status.tags.each do |tag|
|
|
||||||
add(tag, status.account_id, at_time) if tag.usable?
|
add(tag, status.account_id, at_time) if tag.usable?
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
|
|
Loading…
Reference in a new issue