Skip to content

Commit

Permalink
Merge pull request #2557 from wabbajack-tools/skip-loverslab-validation
Browse files Browse the repository at this point in the history
Skip LoverslabUrls during list validation
  • Loading branch information
EzioTheDeadPoet authored May 24, 2024
2 parents 8daa2d1 + ed2aabd commit f4e992f
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion Wabbajack.CLI/Verbs/ValidateLists.cs
Original file line number Diff line number Diff line change
Expand Up @@ -611,7 +611,9 @@ private async Task DeleteOldMirrors(IEnumerable<Hash> mirroredFiles, IReadOnlySe
return (ArchiveStatus.InValid, archive);
}

if (archive.State is Http http && http.Url.Host.EndsWith("github.com"))
if (archive.State is Http http && (http.Url.Host.EndsWith("github.com")
//TODO: Find a better solution for the list validation of LoversLab files.
|| http.Url.Host.EndsWith("loverslab.com")))
return (ArchiveStatus.Valid, archive);

try
Expand Down

0 comments on commit f4e992f

Please sign in to comment.