From db3212efe1914f7477f3282329d74b78722f8589 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?=E1=B4=85=E1=B4=8A=CA=9F=E1=B4=8F=CA=803x=E1=B4=A2?= =?UTF-8?q?=E1=B4=8F?= <89230676+djlorenzouasset@users.noreply.github.com> Date: Sun, 17 May 2026 15:06:28 +0200 Subject: [PATCH] temporary fix manifest errors Fixed "`Could not find ManifestInfoElement based on predicate`" by adding `epicgames-download1.akamaized.net` in the manifest predicate as `download.epicgames.com` seems to not be present in the manifest response. --- FModel/ViewModels/CUE4ParseViewModel.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/FModel/ViewModels/CUE4ParseViewModel.cs b/FModel/ViewModels/CUE4ParseViewModel.cs index 565a672e..b3d92175 100644 --- a/FModel/ViewModels/CUE4ParseViewModel.cs +++ b/FModel/ViewModels/CUE4ParseViewModel.cs @@ -260,7 +260,7 @@ public class CUE4ParseViewModel : ViewModel { (manifest, _) = manifestInfo.DownloadAndParseAsync(manifestOptions, cancellationToken: cancellationToken, - elementManifestPredicate: static x => x.Uri.Host == "download.epicgames.com" + elementManifestPredicate: static x => x.Uri.Host == "download.epicgames.com" || x.Uri.Host == "epicgames-download1.akamaized.net" ).GetAwaiter().GetResult(); } catch (HttpRequestException ex)