We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 40bb0a3 + 6964e8c commit 3a11976Copy full SHA for 3a11976
1 file changed
scripts/pi-hole/js/index.js
@@ -532,12 +532,12 @@ function updateTopClientsChart() {
532
533
client = utils.escapeHtml(client);
534
if (client.indexOf("|") === -1) {
535
+ clientname = client;
536
+ clientip = client;
537
+ } else {
538
idx = client.indexOf("|");
539
clientname = client.substr(0, idx);
540
clientip = client.substr(idx + 1, client.length - idx);
- } else {
- clientname = client;
- clientip = client;
541
}
542
543
url =
0 commit comments