about summary refs log tree commit diff
diff options
context:
space:
mode:
authormultiple creatures <dev@multiple-creature.party>2020-02-10 00:35:14 -0600
committermultiple creatures <dev@multiple-creature.party>2020-02-10 00:35:14 -0600
commit889fc7255768378afce8a9b330ce04b7e6cc004f (patch)
tree45b7f6d3a63ad57ea99505ce7594d9ef750348ad
parent109300db1d77b78efcff8144f0d59eeb401a8c31 (diff)
fix broken follow reqs
-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 11eed5fe3..18b8348c7 100644
--- a/app/lib/activitypub/activity/follow.rb
+++ b/app/lib/activitypub/activity/follow.rb
@@ -14,7 +14,7 @@ class ActivityPub::Activity::Follow < ActivityPub::Activity
       return
     end
 
-    if !target_account.user.allow_unknown_follows? && !@account.ever_interacted_with(target_account)
+    if !target_account.user.allow_unknown_follows? && !@account.ever_interacted_with?(target_account)
       reject_follow_request!(target_account)
       return
     end