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.
This commit is contained in:
		
							parent
							
								
									5e94643058
								
							
						
					
					
						commit
						7a5086729a
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		|  | @ -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 | ||||
| 
 | ||||
|  |  | |||
		Loading…
	
	Add table
		
		Reference in a new issue