diff --git a/Pi_Hole_Ad_Blocker/stats.py b/Pi_Hole_Ad_Blocker/stats.py index 0e39361ce..25e093404 100644 --- a/Pi_Hole_Ad_Blocker/stats.py +++ b/Pi_Hole_Ad_Blocker/stats.py @@ -101,7 +101,7 @@ while True: DNSQUERIES = data["queries"]["total"] ADSBLOCKED = data["queries"]["blocked"] CLIENTS = data["clients"]["total"] - except (KeyError, requests.RequestException, json.JSONDecodeError): + except (KeyError, requests.RequestException): DNSQUERIES = 0 ADSBLOCKED = 0 CLIENTS = 0