diff --git a/Wabbajack.Common/Consts.cs b/Wabbajack.Common/Consts.cs index 62f46efb..d644e6bb 100644 --- a/Wabbajack.Common/Consts.cs +++ b/Wabbajack.Common/Consts.cs @@ -20,7 +20,7 @@ namespace Wabbajack.Common public static string MegaPrefix = "https://mega.nz/#!"; - public static HashSet SupportedArchives = new HashSet {".zip", ".rar", ".7z", ".7zip", ".fomod", ".omod", ".exe", ".dat"}; + public static HashSet SupportedArchives = new HashSet(StringComparer.OrdinalIgnoreCase) {".zip", ".rar", ".7z", ".7zip", ".fomod", ".omod", ".exe", ".dat"}; // HashSet with archive extensions that need to be tested before extraction public static HashSet TestArchivesBeforeExtraction = new HashSet(StringComparer.OrdinalIgnoreCase) {".dat"};