Skip to content
Snippets Groups Projects
Commit 7a508672 authored by Keiji, Yoshimi's avatar Keiji, Yoshimi Committed by Eugen
Browse files

reduce unneed query when post without attachements. (#1907)

* reduce unneed query when post without attachements.

This commit reduce following query:

```
 MediaAttachment Load (0.9ms)  SELECT "media_attachments".* FROM "media_attachments" WHERE "media_attachments"."status
_id" IS NULL AND 1=0 ORDER BY id asc
```

* fixed for more simple changes.
parent 5e946430
No related branches found
No related tags found
No related merge requests found
......@@ -36,7 +36,7 @@ class PostStatusService < BaseService
private
def validate_media!(media_ids)
return if media_ids.nil? || !media_ids.is_a?(Enumerable)
return if media_ids.blank? || !media_ids.is_a?(Enumerable)
raise Mastodon::ValidationError, I18n.t('media_attachments.validations.too_many') if media_ids.size > 4
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment