From 4e6d386785f40e55562fb13d879c68f8653745b5 Mon Sep 17 00:00:00 2001 From: rfuzzo Date: Tue, 29 Dec 2020 14:40:03 +0100 Subject: [PATCH] Update AppSettingsService.cs fix path --- CP77.CR2W/Resources/AppSettingsService.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/CP77.CR2W/Resources/AppSettingsService.cs b/CP77.CR2W/Resources/AppSettingsService.cs index 95a53db25..7c8edf7b8 100644 --- a/CP77.CR2W/Resources/AppSettingsService.cs +++ b/CP77.CR2W/Resources/AppSettingsService.cs @@ -10,7 +10,7 @@ public class AppSettingsService : IAppSettingsService public string ETagPath => Path.Combine(ResourcesPath, "archivehashes-etag.txt"); public string ArchiveHashesPath => Path.Combine(ResourcesPath, "archivehashes.txt"); - public string LooseHashesPath => Path.Combine(ResourcesPath, "archivehashes.csv"); + public string LooseHashesPath => Path.Combine(ResourcesPath, "loosehashes.txt"); public string ArchiveHashesZipPath => Path.Combine(ResourcesPath, "archivehashes.zip"); } }