diff options
author | Kali Kaneko <kali@leap.se> | 2017-08-16 17:18:16 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2017-08-30 16:16:55 -0400 |
commit | b94de93268867e8cab533f29e85110e2c35d2bda (patch) | |
tree | 20360220cda0594b52c5755de982ba93ebd6f3b9 /src/leap/bitmask/vpn/_status.py | |
parent | 8761226a9da4695a7dea6be17e3b349288e5f720 (diff) |
[bug] avoid state flickering when state string is empty
we set status to 'off' by default.
- Resolves: #9013
Diffstat (limited to 'src/leap/bitmask/vpn/_status.py')
-rw-r--r-- | src/leap/bitmask/vpn/_status.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/leap/bitmask/vpn/_status.py b/src/leap/bitmask/vpn/_status.py index 5d41a535..5cf0cc77 100644 --- a/src/leap/bitmask/vpn/_status.py +++ b/src/leap/bitmask/vpn/_status.py @@ -67,6 +67,9 @@ class VPNStatus(object): return status def set_status(self, status, errcode): + if not status: + return + if status in self._STARTING: status = "starting" elif status in self._STOPPING: |