Fixed bug: Passing default ReaderOptions when creating ZipReader for solid extraction (#287)

This commit is contained in:
twirpx
2017-08-16 12:19:23 +05:00
committed by Adam Hathcock
parent 3983db08ff
commit 42d9dfd117

View File

@@ -208,7 +208,7 @@ namespace SharpCompress.Archives.Zip
{
var stream = Volumes.Single().Stream;
stream.Position = 0;
return ZipReader.Open(stream);
return ZipReader.Open(stream, ReaderOptions);
}
}
}