mirror of
https://github.com/pi-hole/FTL.git
synced 2024-10-26 16:52:18 +02:00
Merge pull request #1039 from Daxtorim/fix/domain-filtering
Don't display unrelated blocked CNAME queries when filtering for specific domain
This commit is contained in:
+1
-1
@@ -914,7 +914,7 @@ void getAllQueries(const char *client_message, const int *sock)
|
||||
// If the domain of this query did not match, the CNAME
|
||||
// domain may still match - we have to check it in
|
||||
// addition if this query is of CNAME blocked type
|
||||
else if(query->CNAME_domainID > -1)
|
||||
else if(query->CNAME_domainID == domainid)
|
||||
{
|
||||
// Get this query
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user