From 73fc76b7a3636b57865dfbe989fab245687f6c20 Mon Sep 17 00:00:00 2001 From: multiple creatures Date: Mon, 10 Feb 2020 01:16:52 -0600 Subject: `this` -> `self` --- app/models/account.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'app') 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 -- cgit