diff options
author | multiple creatures <dev@multiple-creature.party> | 2020-02-10 00:35:14 -0600 |
---|---|---|
committer | multiple creatures <dev@multiple-creature.party> | 2020-02-10 00:35:14 -0600 |
commit | 889fc7255768378afce8a9b330ce04b7e6cc004f (patch) | |
tree | 45b7f6d3a63ad57ea99505ce7594d9ef750348ad /app | |
parent | 109300db1d77b78efcff8144f0d59eeb401a8c31 (diff) |
fix broken follow reqs
Diffstat (limited to 'app')
-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 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 |