mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Fix broken validation
This commit is contained in:
parent
c118d73e93
commit
165dad1c1f
@ -147,8 +147,16 @@ public class ValidateLists : IVerb
|
||||
|
||||
var archives = await modListData.Archives.PMapAll(async archive =>
|
||||
{
|
||||
//var result = await DownloadAndValidate(archive, archiveManager, token);
|
||||
var result = await validationCache.Get(archive);
|
||||
if (result.Status == ArchiveStatus.Valid)
|
||||
{
|
||||
return new ValidatedArchive
|
||||
{
|
||||
Status = ArchiveStatus.Valid,
|
||||
Original = archive
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
if (result.Status == ArchiveStatus.InValid)
|
||||
{
|
||||
|
Loading…
Reference in New Issue
Block a user