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.
This commit is contained in:
ᴅᴊʟᴏʀ3xᴢᴏ
2026-05-17 15:06:28 +02:00
parent afb02f5bbd
commit db3212efe1

View File

@@ -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)