re-enable .gz, apparently it works after all if you feed it a file that's actually a .nes.gz etc.

This commit is contained in:
zeromus 2021-01-20 15:51:02 -05:00
parent 6cc4b0e28f
commit 3c10a64fd5
1 changed files with 1 additions and 2 deletions

View File

@ -32,8 +32,7 @@ namespace BizHawk.Client.Common
public static readonly SharpCompressDearchivalMethod Instance = new SharpCompressDearchivalMethod();
//don't try any .tar.* formats, they don't work
//don't try .gz, it's illogical (gz contains no useful archive directory information. we would need to synthesize some.)
static readonly IReadOnlyCollection<string> archiveExts = new[] { ".zip", ".7z", ".rar" };
static readonly IReadOnlyCollection<string> archiveExts = new[] { ".zip", ".7z", ".rar", ".gz" };
public IReadOnlyCollection<string> AllowedArchiveExtensions { get { return archiveExts; } }
}