Skip to content

Commit 10f7278

Browse files
committed
Fix class autoloading issue in ActivityPub::Activity::Create (mastodon#8820)
1 parent 39e84d1 commit 10f7278

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

app/lib/activitypub/activity/create.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ def process_mention(tag, status)
9292
return if tag['href'].blank?
9393

9494
account = account_from_uri(tag['href'])
95-
account = FetchRemoteAccountService.new.call(tag['href'], id: false) if account.nil?
95+
account = ::FetchRemoteAccountService.new.call(tag['href'], id: false) if account.nil?
9696
return if account.nil?
9797
account.mentions.create(status: status)
9898
end

0 commit comments

Comments
 (0)