1
0
mirror of https://github.com/bitwarden/server.git synced 2025-04-04 20:50:21 -05:00

Ensuring phishing.testcategory.com exists to test against

This commit is contained in:
Conner Turnbull 2025-03-18 14:57:06 -04:00
parent e379a43ac4
commit 0a38495d8f
No known key found for this signature in database

View File

@ -63,6 +63,11 @@ public class UpdatePhishingDomainsJob : BaseJob
try
{
var domains = await _cloudPhishingDomainQuery.GetPhishingDomainsAsync();
if (!domains.Contains("phishing.testcategory.com", StringComparer.OrdinalIgnoreCase))
{
domains.Add("phishing.testcategory.com");
}
if (domains.Count > 0)
{