This commit is contained in:
KMY 2023-12-21 10:05:07 +09:00
parent a828efa9be
commit f6e590f741

View file

@ -216,7 +216,7 @@ module Account::Interactions
return false unless local?
scope = followers
scope = scope.where("follows.created_at < '#{since}'") if since.present?
scope = scope.where('follows.created_at < ?', since) if since.present?
scope.exists?(domain: other_domain)
end