Merge pull request #918 from pi-hole/new/fine_grained_externally_blocked_status

Long-term queries: Request all externally blocked variants when the checkbox is enabled
This commit is contained in:
Mark Drobnak
2019-02-22 21:53:24 -05:00
committed by GitHub

View File

@@ -170,7 +170,9 @@ function getQueryTypes()
}
if($("#type_external").prop("checked"))
{
queryType.push(6);
// Multiple IDs correspond to this status
// We request queries with all of them
queryType.push([6,7,8]);
}
return queryType.join(",");
}