Fixes the NPE during install, why is this now a problem? Never was an issue before!?

This commit is contained in:
Timothy Baldridge 2020-02-14 21:52:57 -07:00
parent f416f80546
commit 056cd0b8a9

View File

@ -102,7 +102,7 @@ namespace Wabbajack.Lib
VFS.AddKnown(
ModList.Directives
.OfType<FromArchive>()
.Select(f => new KnownFile { Paths = f.ArchiveHashPath}));
.Select(f => new KnownFile { Paths = f.ArchiveHashPath, Hash = f.Hash}));
await VFS.BackfillMissing();
}