Add password when opening RarReader

This commit is contained in:
Roy van Kaathoven
2015-10-27 18:52:06 +01:00
parent 9a638e7aa5
commit 6e0f4ecbc9

View File

@@ -64,7 +64,7 @@ namespace SharpCompress.Archive.Rar
{
var stream = Volumes.First().Stream;
stream.Position = 0;
return RarReader.Open(stream);
return RarReader.Open(stream, Password);
}
public override bool IsSolid