Include max image dimensions in error (#11552)
This commit is contained in:
		
							parent
							
								
									a5a5a0adec
								
							
						
					
					
						commit
						d7bdddbeef
					
				
					 1 changed files with 1 additions and 1 deletions
				
			
		| 
						 | 
					@ -43,7 +43,7 @@ module Attachmentable
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      width, height = FastImage.size(attachment.queued_for_write[:original].path)
 | 
					      width, height = FastImage.size(attachment.queued_for_write[:original].path)
 | 
				
			||||||
 | 
					
 | 
				
			||||||
      raise Mastodon::DimensionsValidationError, "#{width}x#{height} images are not supported" if width.present? && height.present? && (width * height >= MAX_MATRIX_LIMIT)
 | 
					      raise Mastodon::DimensionsValidationError, "#{width}x#{height} images are not supported, must be below #{MAX_MATRIX_LIMIT} sqpx" if width.present? && height.present? && (width * height >= MAX_MATRIX_LIMIT)
 | 
				
			||||||
    end
 | 
					    end
 | 
				
			||||||
  end
 | 
					  end
 | 
				
			||||||
 | 
					
 | 
				
			||||||
| 
						 | 
					
 | 
				
			||||||
		Loading…
	
	Add table
		
		Reference in a new issue