mirror of
https://github.com/pi-hole/pi-hole.git
synced 2024-11-24 07:03:43 +00:00
Update chronometer.sh
Removed unneeded code on line 35
This commit is contained in:
parent
60aed85933
commit
3ec23a66a3
1 changed files with 1 additions and 1 deletions
|
@ -32,7 +32,7 @@ function CalcBlockedDomains(){
|
|||
|
||||
function CalcQueriesToday(){
|
||||
if [ -e "$piLog" ];then
|
||||
queriesToday=$(cat "$piLog" | grep "$today" | awk '/query/ {print $6}' | wc -l)
|
||||
queriesToday=$(cat "$piLog" | awk '/query/ {print $6}' | wc -l)
|
||||
else
|
||||
queriesToday="Err."
|
||||
fi
|
||||
|
|
Loading…
Reference in a new issue