Code Duplication    Length = 3-3 lines in 2 locations

_inc/lib/class.core-rest-api-endpoints.php 2 locations

@@ 852-854 (lines=3) @@
849
				)
850
			);
851
		}
852
		if ( $site_data->get_error_code() === 'site_data_fetch_failed' ) {
853
			return new WP_Error( 'site_data_fetch_failed', esc_html__( 'Failed fetching site data. Try again later.', 'jetpack' ), array( 'status' => 400 ) );
854
		}
855
856
		if ( $site_data->get_error_code() === 'site_id_missing' ) {
857
			return new WP_Error( 'site_id_missing', esc_html__( 'The ID of this site does not exist.', 'jetpack' ), array( 'status' => 404 ) );
@@ 856-858 (lines=3) @@
853
			return new WP_Error( 'site_data_fetch_failed', esc_html__( 'Failed fetching site data. Try again later.', 'jetpack' ), array( 'status' => 400 ) );
854
		}
855
856
		if ( $site_data->get_error_code() === 'site_id_missing' ) {
857
			return new WP_Error( 'site_id_missing', esc_html__( 'The ID of this site does not exist.', 'jetpack' ), array( 'status' => 404 ) );
858
		}
859
	}
860
861
	/**