diff options
author | Eugen Rochko <eugen@zeonfederated.com> | 2018-05-21 16:01:16 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-05-21 16:01:16 +0200 |
commit | 32d437238191c94534c2010e640c2b5711fa3d0d (patch) | |
tree | 96b6caf1f07555f9a4f299fd2e0ce932032db811 /app/services/remove_status_service.rb | |
parent | e583f110c3ce737c292de1f47f39dd09450195dc (diff) |
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
Diffstat (limited to 'app/services/remove_status_service.rb')
-rw-r--r-- | app/services/remove_status_service.rb | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app/services/remove_status_service.rb b/app/services/remove_status_service.rb index 53f2be6f8..8c3e18444 100644 --- a/app/services/remove_status_service.rb +++ b/app/services/remove_status_service.rb @@ -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! |