From 85f24ca4862ddaa6548108c5d92e27e533d0f040 Mon Sep 17 00:00:00 2001 From: YoshiRulz Date: Fri, 15 Jan 2021 22:14:43 +1000 Subject: [PATCH] Remove file extension check from SharpCompressDearchivalMethod caused .lsmv to not be recognised (it's .zip), wasn't strictly necessary anyway --- src/BizHawk.Client.Common/SharpCompressDearchivalMethod.cs | 5 ----- 1 file changed, 5 deletions(-) diff --git a/src/BizHawk.Client.Common/SharpCompressDearchivalMethod.cs b/src/BizHawk.Client.Common/SharpCompressDearchivalMethod.cs index 42b1895dbf..d4d6c339ee 100644 --- a/src/BizHawk.Client.Common/SharpCompressDearchivalMethod.cs +++ b/src/BizHawk.Client.Common/SharpCompressDearchivalMethod.cs @@ -17,8 +17,6 @@ namespace BizHawk.Client.Common offset = 0; isExecutable = false; - if (!ArchiveExtensions.Contains(Path.GetExtension(fileName).ToLowerInvariant())) return false; - try { using var arcTest = ArchiveFactory.Open(fileName); @@ -32,9 +30,6 @@ namespace BizHawk.Client.Common public SharpCompressArchiveFile Construct(string path) => new SharpCompressArchiveFile(path); - /// whitelist as to avoid exceptions - private static readonly string[] ArchiveExtensions = { ".zip", ".gz", ".gzip", ".tar", ".rar", ".7z" }; - public static readonly SharpCompressDearchivalMethod Instance = new SharpCompressDearchivalMethod(); } } \ No newline at end of file