about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2020-01-15 14:33:30 -0600
committermultiple creatures <dev@multiple-creature.party>2020-01-15 14:34:06 -0600
commit37ae8a96c1312df0d0ca2f7f14ed06a4be085fa2 (patch)
treebaf3128b5be808ed689bc76ce89ed0cb99e96e08 /app
parentb4b8eaf61cfb0bd6df8fe1cf0d00e55be13dd1f5 (diff)
fix tired dev operating `vim` without adequate coffee & breaking code
Diffstat (limited to 'app')
-rw-r--r--app/lib/activitypub/activity/follow.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/lib/activitypub/activity/follow.rb b/app/lib/activitypub/activity/follow.rb
index 1c19c7006..73336fde0 100644
--- a/app/lib/activitypub/activity/follow.rb
+++ b/app/lib/activitypub/activity/follow.rb
@@ -38,7 +38,7 @@ class ActivityPub::Activity::Follow < ActivityPub::Activity
   def reject_follow_request!(target_account)
     json = Oj.dump(serialize_payload(FollowRequest.new(account: @account, target_account: target_account, uri: @json['id']), ActivityPub::RejectFollowSerializer))
     ActivityPub::DeliveryWorker.perform_async(json, target_account.id, @account.inbox_url)
-  endA
+  end
 
   private