Skip to content

Commit

Permalink
5.20.1 (#2598)
Browse files Browse the repository at this point in the history
  • Loading branch information
PromoFaux committed May 28, 2023
2 parents 40bb0a3 + 6964e8c commit 3a11976
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions scripts/pi-hole/js/index.js
Expand Up @@ -532,12 +532,12 @@ function updateTopClientsChart() {

client = utils.escapeHtml(client);
if (client.indexOf("|") === -1) {
clientname = client;
clientip = client;
} else {
idx = client.indexOf("|");
clientname = client.substr(0, idx);
clientip = client.substr(idx + 1, client.length - idx);
} else {
clientname = client;
clientip = client;
}

url =
Expand Down

0 comments on commit 3a11976

Please sign in to comment.