From e27bd4f78fe87b2a5de2c89925683c9ddb049748 Mon Sep 17 00:00:00 2001 From: ClassicRagu Date: Sat, 15 Nov 2025 09:27:58 -0600 Subject: [PATCH] Update Lumina and Reslogger download URL --- Alpha/Alpha.csproj | 42 +++++++++++++++---------------- Alpha/Services/PathListService.cs | 2 +- 2 files changed, 22 insertions(+), 22 deletions(-) diff --git a/Alpha/Alpha.csproj b/Alpha/Alpha.csproj index 384790c..5be00df 100644 --- a/Alpha/Alpha.csproj +++ b/Alpha/Alpha.csproj @@ -13,36 +13,36 @@ - - + + - - - - + + + + - - - + + + - - - - - - - + + + + + + + - - + + - - - + + + diff --git a/Alpha/Services/PathListService.cs b/Alpha/Services/PathListService.cs index b3dce3b..d5ddc2b 100644 --- a/Alpha/Services/PathListService.cs +++ b/Alpha/Services/PathListService.cs @@ -21,7 +21,7 @@ public async Task DownloadResLogger(bool currentOnly) { try { var filename = currentOnly ? "CurrentPathListWithHashes.gz" : "PathListWithHashes.gz"; - var url = $"https://rl2.perchbird.dev/download/export/{filename}"; + var url = $"https://rl2.perchbird.dev/download/{filename}"; await using var req = await Program.HttpClient.GetStreamAsync(url); await using var gzip = new GZipStream(req, CompressionMode.Decompress);