0
0
Fork 0

Fix Rails/FindEach cop (#26886)

This commit is contained in:
Matt Jankowski 2023-11-06 10:53:29 -05:00 committed by GitHub
parent fe26f33e0a
commit 0c4e7c06dc
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
8 changed files with 9 additions and 9 deletions

View file

@ -246,7 +246,7 @@ class FeedManager
# @param [Account] target_account
# @return [void]
def clear_from_lists(account, target_account)
List.where(account: account).each do |list|
List.where(account: account).find_each do |list|
clear_from_list(list, target_account)
end
end