diff options
-rw-r--r-- | changes/bug_always_logout | 2 | ||||
-rw-r--r-- | src/leap/gui/mainwindow.py | 5 |
2 files changed, 7 insertions, 0 deletions
diff --git a/changes/bug_always_logout b/changes/bug_always_logout new file mode 100644 index 00000000..eb2c2817 --- /dev/null +++ b/changes/bug_always_logout @@ -0,0 +1,2 @@ + o Always logout when closing the app if the user previously signed + in. Fixes #3245.
\ No newline at end of file diff --git a/src/leap/gui/mainwindow.py b/src/leap/gui/mainwindow.py index 6fe3e72d..8a729bae 100644 --- a/src/leap/gui/mainwindow.py +++ b/src/leap/gui/mainwindow.py @@ -1322,6 +1322,11 @@ class MainWindow(QtGui.QMainWindow): """ logger.debug('About to quit, doing cleanup...') + if self._srp_auth is not None: + if self._srp_auth.get_session_id() is not None or \ + self._srp_auth.get_token() is not None: + self._srp_auth.logout() + logger.debug('Cleaning pidfiles') self._cleanup_pidfiles() |