mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
skip validation of loverslab.com urls
This commit is contained in:
parent
8daa2d1b63
commit
ed2aabd0b1
@ -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