mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Don't try to extract folders
This commit is contained in:
parent
efef8a2944
commit
e1adcb761e
@ -83,7 +83,7 @@ namespace Wabbajack.VirtualFileSystem
|
||||
{
|
||||
var entry = _archive.GetEntry(index);
|
||||
var path = (RelativePath)entry.FileName;
|
||||
if (!_shouldExtract(path))
|
||||
if (entry.IsFolder || !_shouldExtract(path))
|
||||
{
|
||||
outStream = null;
|
||||
return 0;
|
||||
|
Loading…
Reference in New Issue
Block a user