Fix rubocop

This commit is contained in:
KMY 2024-05-24 08:38:58 +09:00
parent c546939a40
commit dc7778cb8b
6 changed files with 9 additions and 9 deletions

View file

@ -212,7 +212,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