Code Duplication    Length = 7-7 lines in 2 locations

class.jetpack-post-images.php 2 locations

@@ 650-656 (lines=7) @@
647
		if ( ! $media && $args['from_attachment'] ) {
648
			$media = self::from_attachment( $post_id, $args['width'], $args['height'] );
649
		}
650
		if ( ! $media && $args['from_blocks'] ) {
651
			if ( empty( $args['html_content'] ) ) {
652
				$media = self::from_blocks( $post_id, $args['width'], $args['height'] ); // Use the post_id, which will load the content
653
			} else {
654
				$media = self::from_blocks( $args['html_content'], $args['width'], $args['height'] ); // If html_content is provided, use that
655
			}
656
		}
657
		if ( ! $media && $args['from_html'] ) {
658
			if ( empty( $args['html_content'] ) ) {
659
				$media = self::from_html( $post_id, $args['width'], $args['height'] ); // Use the post_id, which will load the content
@@ 657-663 (lines=7) @@
654
				$media = self::from_blocks( $args['html_content'], $args['width'], $args['height'] ); // If html_content is provided, use that
655
			}
656
		}
657
		if ( ! $media && $args['from_html'] ) {
658
			if ( empty( $args['html_content'] ) ) {
659
				$media = self::from_html( $post_id, $args['width'], $args['height'] ); // Use the post_id, which will load the content
660
			} else {
661
				$media = self::from_html( $args['html_content'], $args['width'], $args['height'] ); // If html_content is provided, use that
662
			}
663
		}
664
665
		if ( ! $media && $args['fallback_to_avatars'] ) {
666
			$media = self::from_blavatar( $post_id, $args['avatar_size'] );