Skip to content
Snippets Groups Projects
Unverified Commit 61d44dd1 authored by Eugen Rochko's avatar Eugen Rochko Committed by GitHub
Browse files

Fix typo in ActivityPub Create handler (#8952)

Regression from #8951
parent 87fdd139
No related branches found
No related tags found
No related merge requests found
......@@ -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|
......
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