diff options
-rw-r--r-- | changes/next-changelog.rst | 1 | ||||
-rw-r--r-- | src/leap/bitmask/gui/mail_status.py | 2 |
2 files changed, 2 insertions, 1 deletions
diff --git a/changes/next-changelog.rst b/changes/next-changelog.rst index 287b7736..54b2b2ed 100644 --- a/changes/next-changelog.rst +++ b/changes/next-changelog.rst @@ -17,6 +17,7 @@ Features Bugfixes ~~~~~~~~ - `#7568 <https://leap.se/code/issues/7568>`_: Fix typo on signal name. +- `#7583 <https://leap.se/code/issues/7583>`_: Fix set_soledad_auth_token event callback signature. - `#1235 <https://leap.se/code/issues/1235>`_: Description for the fixed stuff corresponding with issue #1235. - Bugfix without related issue number. diff --git a/src/leap/bitmask/gui/mail_status.py b/src/leap/bitmask/gui/mail_status.py index 8b4329d7..f7957c95 100644 --- a/src/leap/bitmask/gui/mail_status.py +++ b/src/leap/bitmask/gui/mail_status.py @@ -186,7 +186,7 @@ class MailStatusWidget(QtGui.QWidget): msg = self.tr("There was an unexpected problem with Soledad.") self._set_mail_status(msg, ready=-1) - def set_soledad_invalid_auth_token(self, event, content): + def set_soledad_invalid_auth_token(self, event, content=None): """ This method is called when the auth token is invalid |