Browse Source

Record trending tags from ActivityPub, too (#7647)

pull/4/head
Eugen Rochko 6 years ago
committed by Yamagishi Kazutoshi
parent
commit
ab36e0ef72
1 changed files with 5 additions and 2 deletions
  1. +5
    -2
      app/lib/activitypub/activity/create.rb

+ 5
- 2
app/lib/activitypub/activity/create.rb View File

@ -78,9 +78,12 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
return if tag['name'].blank?
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
nil
end

Loading…
Cancel
Save