Skip to content

Commit

Permalink
Merge pull request #289 from pi-hole/fix/lowercaseAdlistSearch
Browse files Browse the repository at this point in the history
Convert Adlist search string to lowercase
  • Loading branch information
AzureMarker authored Dec 23, 2016
2 parents b29e3cd + 088bf40 commit 4445144
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion js/pihole/queryads.js
Original file line number Diff line number Diff line change
Expand Up @@ -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();
Expand Down

0 comments on commit 4445144

Please sign in to comment.