Convert Adlist search string to lowercase

Fixes https://www.reddit.com/r/pihole/comments/5jx91b/query_adlists_search_partial_match_feature_request/
This commit is contained in:
Mcat12
2016-12-23 11:02:43 -05:00
parent b29e3cd2df
commit 088bf40ce1
+1 -1
View File
@@ -16,7 +16,7 @@ function eventsource() {
}
var host = window.location.host;
var source = new EventSource("http://"+host+"/admin/php/queryads.php?domain="+domain.val()+"&"+exact);
var source = new EventSource("http://"+host+"/admin/php/queryads.php?domain="+domain.val().toLowerCase()+"&"+exact);
// Reset and show field
ta.empty();