mirror of
https://github.com/pi-hole/web.git
synced 2024-12-06 19:36:21 +01:00
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:
@@ -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();
|
||||
|
||||
Reference in New Issue
Block a user