Fix typo in ActivityPub Create handler (#8952)

Regression from #8951
This commit is contained in:
Eugen Rochko 2018-10-11 02:10:15 +02:00 committed by GitHub
parent 87fdd139b8
commit 61d44dd11f
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -69,7 +69,7 @@ class ActivityPub::Activity::Create < ActivityPub::Activity
def attach_tags(status)
@tags.each do |tag|
status.tags << tag
TrendingTags.record_use!(hashtag, status.account, status.created_at) if status.public_visibility?
TrendingTags.record_use!(tag, status.account, status.created_at) if status.public_visibility?
end
@mentions.each do |mention|