diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-09-28 17:02:53 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-09-28 17:02:53 +0200 |
commit | ef69c655cc41c13c617383b727259d045f68a80c (patch) | |
tree | 7ad28adb6d58fdff13ef72d63235a5268cb7a087 /app/lib/activitypub/activity | |
parent | e02c45941da17fe27fd2fb5afad38f5ddd6de494 (diff) |
Fix class autoloading issue in ActivityPub::Activity::Create (#8820)
Diffstat (limited to 'app/lib/activitypub/activity')
-rw-r--r-- | app/lib/activitypub/activity/create.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/activitypub/activity/create.rb b/app/lib/activitypub/activity/create.rb index f40e1fa3e..978289788 100644 --- a/app/lib/activitypub/activity/create.rb +++ b/app/lib/activitypub/activity/create.rb @@ -92,7 +92,7 @@ class ActivityPub::Activity::Create < ActivityPub::Activity return if tag['href'].blank? account = account_from_uri(tag['href']) - account = FetchRemoteAccountService.new.call(tag['href'], id: false) if account.nil? + account = ::FetchRemoteAccountService.new.call(tag['href'], id: false) if account.nil? return if account.nil? account.mentions.create(status: status) end |