small improvement in pi-hole module
* set status to 'pi-hole unknown' in case the pi-hole status cannot be retrieved.
This commit is contained in:
parent
315328b41f
commit
8996635db0
1 changed files with 5 additions and 5 deletions
|
@ -30,7 +30,7 @@ class Module(bumblebee.engine.Module):
|
|||
|
||||
def pihole_status(self, widget):
|
||||
if self._pihole_status is None:
|
||||
return "unknown"
|
||||
return "pi-hole unknown"
|
||||
return "pi-hole " + ("up/" + self._ads_blocked_today if self._pihole_status else "down")
|
||||
|
||||
def update_pihole_status(self):
|
||||
|
@ -61,8 +61,8 @@ class Module(bumblebee.engine.Module):
|
|||
self.update_pihole_status()
|
||||
|
||||
def state(self, widget):
|
||||
if self._pihole_status:
|
||||
return ["enabled"]
|
||||
elif not self._pihole_status:
|
||||
return ["disabled", "warning"]
|
||||
if self._pihole_status is None:
|
||||
return []
|
||||
elif self._pihole_status:
|
||||
return ["enabled"]
|
||||
return ["disabled", "warning"]
|
||||
|
|
Loading…
Reference in a new issue