Code Duplication    Length = 6-6 lines in 2 locations

class.jetpack-post-images.php 2 locations

@@ 622-627 (lines=6) @@
619
			$media = self::from_gallery( $post_id );
620
		if ( !$media && $args['from_attachment'] )
621
			$media = self::from_attachment( $post_id, $args['width'], $args['height'] );
622
		if ( ! $media && $args['from_blocks'] ) {
623
			if ( empty( $args['html_content'] ) )
624
				$media = self::from_blocks( $post_id, $args['width'], $args['height'] ); // Use the post_id, which will load the content
625
			else
626
				$media = self::from_blocks( $args['html_content'], $args['width'], $args['height'] ); // If html_content is provided, use that
627
		}
628
		if ( !$media && $args['from_html'] ) {
629
			if ( empty( $args['html_content'] ) )
630
				$media = self::from_html( $post_id, $args['width'], $args['height'] ); // Use the post_id, which will load the content
@@ 628-633 (lines=6) @@
625
			else
626
				$media = self::from_blocks( $args['html_content'], $args['width'], $args['height'] ); // If html_content is provided, use that
627
		}
628
		if ( !$media && $args['from_html'] ) {
629
			if ( empty( $args['html_content'] ) )
630
				$media = self::from_html( $post_id, $args['width'], $args['height'] ); // Use the post_id, which will load the content
631
			else
632
				$media = self::from_html( $args['html_content'], $args['width'], $args['height'] ); // If html_content is provided, use that
633
		}
634
635
		if ( !$media && $args['fallback_to_avatars'] ) {
636
			$media = self::from_blavatar( $post_id, $args['avatar_size'] );