fix FN live

This commit is contained in:
Marlon 2025-05-29 13:03:03 +02:00 committed by GitHub
parent 72930bcd14
commit 8ba756ade5
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -193,7 +193,7 @@ public class CUE4ParseViewModel : ViewModel
{
ChunkCacheDirectory = cacheDir,
ManifestCacheDirectory = cacheDir,
ChunkBaseUrl = "http://epicgames-download1.akamaized.net/Builds/Fortnite/CloudDir/",
ChunkBaseUrl = "http://download.epicgames.com/Builds/Fortnite/CloudDir/",
Decompressor = ManifestZlibngDotNetDecompressor.Decompress,
DecompressorState = ZlibHelper.Instance,
CacheChunksAsIs = false
@ -206,7 +206,7 @@ public class CUE4ParseViewModel : ViewModel
{
(manifest, _) = manifestInfo.DownloadAndParseAsync(manifestOptions,
cancellationToken: cancellationToken,
elementManifestPredicate: static x => x.Uri.Host != "cloudflare.epicgamescdn.com"
elementManifestPredicate: static x => x.Uri.Host == "download.epicgames.com"
).GetAwaiter().GetResult();
}
catch (HttpRequestException ex)