fix gz detection

This commit is contained in:
13xforever 2019-08-09 18:39:19 +05:00
parent 86370ed21d
commit ca11634eec

View File

@ -17,11 +17,12 @@ namespace CompatBot.EventHandlers.LogParsing.ArchiveHandlers
public (bool result, string reason) CanHandle(string fileName, int fileSize, ReadOnlySpan<byte> header)
{
if (header.Length >= Header.Length
&& header.Slice(0, Header.Length).SequenceEqual(Header))
if (header.Length >= Header.Length)
{
if (header.Slice(0, Header.Length).SequenceEqual(Header))
return (true, null);
if (fileName.EndsWith(".log.gz", StringComparison.InvariantCultureIgnoreCase)
}
else if (fileName.EndsWith(".log.gz", StringComparison.InvariantCultureIgnoreCase)
&& !fileName.Contains("tty.log", StringComparison.InvariantCultureIgnoreCase))
return (true, null);