Code Duplication    Length = 3-3 lines in 2 locations

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

@@ 843-845 (lines=3) @@
840
				)
841
			);
842
		}
843
		if ( $site_data->get_error_code() === 'site_data_fetch_failed' ) {
844
			return new WP_Error( 'site_data_fetch_failed', esc_html__( 'Failed fetching site data. Try again later.', 'jetpack' ), array( 'status' => 400 ) );
845
		}
846
847
		if ( $site_data->get_error_code() === 'site_id_missing' ) {
848
			return new WP_Error( 'site_id_missing', esc_html__( 'The ID of this site does not exist.', 'jetpack' ), array( 'status' => 404 ) );
@@ 847-849 (lines=3) @@
844
			return new WP_Error( 'site_data_fetch_failed', esc_html__( 'Failed fetching site data. Try again later.', 'jetpack' ), array( 'status' => 400 ) );
845
		}
846
847
		if ( $site_data->get_error_code() === 'site_id_missing' ) {
848
			return new WP_Error( 'site_id_missing', esc_html__( 'The ID of this site does not exist.', 'jetpack' ), array( 'status' => 404 ) );
849
		}
850
	}
851
852
	/**