Skip to content

Commit 8ba756a

Browse files
authored
fix FN live
1 parent 72930bc commit 8ba756a

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

FModel/ViewModels/CUE4ParseViewModel.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -193,7 +193,7 @@ await _threadWorkerView.Begin(cancellationToken =>
193193
{
194194
ChunkCacheDirectory = cacheDir,
195195
ManifestCacheDirectory = cacheDir,
196-
ChunkBaseUrl = "http://epicgames-download1.akamaized.net/Builds/Fortnite/CloudDir/",
196+
ChunkBaseUrl = "http://download.epicgames.com/Builds/Fortnite/CloudDir/",
197197
Decompressor = ManifestZlibngDotNetDecompressor.Decompress,
198198
DecompressorState = ZlibHelper.Instance,
199199
CacheChunksAsIs = false
@@ -206,7 +206,7 @@ await _threadWorkerView.Begin(cancellationToken =>
206206
{
207207
(manifest, _) = manifestInfo.DownloadAndParseAsync(manifestOptions,
208208
cancellationToken: cancellationToken,
209-
elementManifestPredicate: static x => x.Uri.Host != "cloudflare.epicgamescdn.com"
209+
elementManifestPredicate: static x => x.Uri.Host == "download.epicgames.com"
210210
).GetAwaiter().GetResult();
211211
}
212212
catch (HttpRequestException ex)

0 commit comments

Comments
 (0)