0
0
Fork 0

Use #any? instead of #exists? when checking media attachments (#7570)

If media_attachments are not loaded, SQL query is the same, but
the #exists? method performs SQL query even if preloaded
This commit is contained in:
Eugen Rochko 2018-05-21 16:01:16 +02:00 committed by GitHub
parent e583f110c3
commit 32d4372381
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View file

@ -20,7 +20,7 @@ class RemoveStatusService < BaseService
remove_reblogs
remove_from_hashtags
remove_from_public
remove_from_media if status.media_attachments.exists?
remove_from_media if status.media_attachments.any?
remove_from_direct if status.direct_visibility?
@status.destroy!