This commit is contained in:
nicolas.dorier 2021-10-15 14:19:40 +09:00
parent 899bf98f45
commit 3671e7f18c
No known key found for this signature in database
GPG Key ID: 6618763EF09186FE

View File

@ -370,9 +370,8 @@ namespace BTCPayServer.Tests
foreach (var match in regex.Matches(text).OfType<Match>())
{
var url = match.Groups[1].Value;
if (urlBlacklist.Any(a => a.StartsWith(url.ToLowerInvariant())))
if (urlBlacklist.Any(a => url.StartsWith(a.ToLowerInvariant())))
continue;
checkLinks.Add(AssertLinkNotDead(httpClient, url, file));
}