mirror of
https://github.com/adamhathcock/sharpcompress.git
synced 2026-09-24 16:05:27 +00:00
Fix logic to match ExtractAllEntries
This commit is contained in:
@@ -25,7 +25,7 @@ public class ExtractAll : TestBase
|
||||
|
||||
using var archive = ArchiveFactory.Open(testArchive);
|
||||
|
||||
if (archive.IsSolid && archive.Type != ArchiveType.SevenZip)
|
||||
if (archive.IsSolid || archive.Type == ArchiveType.SevenZip)
|
||||
{
|
||||
var reader = archive.ExtractAllEntries();
|
||||
while (await reader.MoveToNextEntryAsync())
|
||||
|
||||
Reference in New Issue
Block a user