diff options
author | multiple creatures <dev@multiple-creature.party> | 2020-01-15 14:33:30 -0600 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2020-01-15 14:34:06 -0600 |
commit | 37ae8a96c1312df0d0ca2f7f14ed06a4be085fa2 (patch) | |
tree | baf3128b5be808ed689bc76ce89ed0cb99e96e08 /app/lib/activitypub | |
parent | b4b8eaf61cfb0bd6df8fe1cf0d00e55be13dd1f5 (diff) |
fix tired dev operating `vim` without adequate coffee & breaking code
Diffstat (limited to 'app/lib/activitypub')
-rw-r--r-- | app/lib/activitypub/activity/follow.rb | 2 |
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 |