Skip to content
Snippets Groups Projects
Commit ab36e0ef authored by Eugen Rochko's avatar Eugen Rochko Committed by Yamagishi Kazutoshi
Browse files

Record trending tags from ActivityPub, too (#7647)

parent dfbadd68
No related branches found
No related tags found
No related merge requests found
...@@ -78,9 +78,12 @@ class ActivityPub::Activity::Create < ActivityPub::Activity ...@@ -78,9 +78,12 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
return if tag['name'].blank? return if tag['name'].blank?
hashtag = tag['name'].gsub(/\A#/, '').mb_chars.downcase hashtag = tag['name'].gsub(/\A#/, '').mb_chars.downcase
hashtag = Tag.where(name: hashtag).first_or_initialize(name: hashtag) hashtag = Tag.where(name: hashtag).first_or_create(name: hashtag)
status.tags << hashtag unless status.tags.include?(hashtag) return if status.tags.include?(hashtag)
status.tags << hashtag
TrendingTags.record_use!(hashtag, status.account, status.created_at)
rescue ActiveRecord::RecordInvalid rescue ActiveRecord::RecordInvalid
nil nil
end 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