about summary refs log tree commit diff
path: root/app
diff options
context:
space:
mode:
Diffstat (limited to 'app')
-rw-r--r--app/models/account.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/app/models/account.rb b/app/models/account.rb
index 20181ed57..90da8bd21 100644
--- a/app/models/account.rb
+++ b/app/models/account.rb
@@ -464,7 +464,7 @@ class Account < ApplicationRecord
   def ever_interacted_with?(target_account)
     return false if target_account.nil?
 
-    target_account.following?(this) || ever_mentioned_by?(target_account)
+    target_account.following?(self) || ever_mentioned_by?(target_account)
   end
 
   class Field < ActiveModelSerializers::Model