Merge pull request #2557 from wabbajack-tools/skip-loverslab-validation

Skip LoverslabUrls during list validation
This commit is contained in:
Luca 2024-05-24 19:24:11 +02:00 committed by GitHub
commit f4e992ff99
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -611,7 +611,9 @@ public class ValidateLists
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