diff options
-rw-r--r-- | changes/bug_3274-fix-negative-rates | 1 | ||||
-rw-r--r-- | src/leap/gui/statuspanel.py | 5 |
2 files changed, 6 insertions, 0 deletions
diff --git a/changes/bug_3274-fix-negative-rates b/changes/bug_3274-fix-negative-rates new file mode 100644 index 00000000..78df7a4f --- /dev/null +++ b/changes/bug_3274-fix-negative-rates @@ -0,0 +1 @@ + o Bugfix, avoid getting negative rates. Closes #3274. diff --git a/src/leap/gui/statuspanel.py b/src/leap/gui/statuspanel.py index 7c824e01..f3424c7c 100644 --- a/src/leap/gui/statuspanel.py +++ b/src/leap/gui/statuspanel.py @@ -86,6 +86,11 @@ class RateMovingAverage(object): rate = float(deltatraffic) / float(deltat) / 1024 except ZeroDivisionError: rate = 0 + + # In some cases we get negative rates + if rate < 0: + rate = 0 + return rate def get_total(self): |