mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
Merge pull request #2557 from wabbajack-tools/skip-loverslab-validation
Skip LoverslabUrls during list validation
This commit is contained in:
commit
f4e992ff99
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user