Add Email and ClientIpAddress audit fields to cvMatcher.Results #46

Merged
claude merged 5 commits from feature/result-email-and-ip into main 2026-06-08 15:58:20 +00:00
Showing only changes of commit 2e9069cbdb - Show all commits
@@ -117,6 +117,10 @@ public sealed class HtmlJobSearcher
continue;
}
// Skip non-HTTP(S) URLs (e.g. file:// or javascript: that can appear in scraped HTML)
if (absoluteUri.Scheme != Uri.UriSchemeHttp && absoluteUri.Scheme != Uri.UriSchemeHttps)
continue;
var url = absoluteUri.GetLeftPart(UriPartial.Path);
if (seen.Add(url))
results.Add(url);