bluetooth2: only show connection count in cases of excessive numbers of connections
This commit is contained in:
parent
fd4b940d58
commit
21060a10a0
1 changed files with 1 additions and 1 deletions
|
@ -35,7 +35,7 @@ class Module(core.module.Module):
|
|||
|
||||
def status(self, widget):
|
||||
"""Get status."""
|
||||
return self._status
|
||||
return self._status if self._status.isdigit() and int(self._status) > 1 else ""
|
||||
|
||||
def update(self):
|
||||
"""Update current state."""
|
||||
|
|
Loading…
Reference in a new issue