diff options
author | Tomás Touceda <chiiph@leap.se> | 2013-08-21 10:20:44 -0300 |
---|---|---|
committer | Tomás Touceda <chiiph@leap.se> | 2013-08-21 21:19:06 -0300 |
commit | bdf3ee2957a3f2177911f2652626c52856ef9869 (patch) | |
tree | 1972071a62b708820676809acd907f640f49a7fa /src/leap/bitmask/gui | |
parent | 8b19f78391ec575cbc9ee0d45bca9e00e141fe5d (diff) |
Use DELETE /1/logout to properly logout
Diffstat (limited to 'src/leap/bitmask/gui')
-rw-r--r-- | src/leap/bitmask/gui/mainwindow.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/leap/bitmask/gui/mainwindow.py b/src/leap/bitmask/gui/mainwindow.py index e84b7a7b..9b9359bd 100644 --- a/src/leap/bitmask/gui/mainwindow.py +++ b/src/leap/bitmask/gui/mainwindow.py @@ -1343,6 +1343,9 @@ class MainWindow(QtGui.QMainWindow): Starts the logout sequence """ + + self._soledad_bootstrapper.cancel_bootstrap() + # XXX: If other defers are doing authenticated stuff, this # might conflict with those. CHECK! threads.deferToThread(self._srp_auth.logout) |