diff --git a/Apps/RegexBlockListApp/App.cs b/Apps/RegexBlockListApp/App.cs index 00760634..98144443 100644 --- a/Apps/RegexBlockListApp/App.cs +++ b/Apps/RegexBlockListApp/App.cs @@ -397,7 +397,7 @@ namespace RegexBlockList return Task.FromResult(null); DnsQuestionRecord question = request.Question[0]; - string domain = question.Name; + string domain = question.Name.ToLower(); foreach (Regex regex in _regexAllowListPatterns) {