From 8ba756ade5e9eced8fe64710a86b567c4ba03cc5 Mon Sep 17 00:00:00 2001 From: Marlon Date: Thu, 29 May 2025 13:03:03 +0200 Subject: [PATCH] fix FN live --- FModel/ViewModels/CUE4ParseViewModel.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/FModel/ViewModels/CUE4ParseViewModel.cs b/FModel/ViewModels/CUE4ParseViewModel.cs index 33f9495c..bf6fbaad 100644 --- a/FModel/ViewModels/CUE4ParseViewModel.cs +++ b/FModel/ViewModels/CUE4ParseViewModel.cs @@ -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)