diff options
-rw-r--r-- | changes/bug_7093-fix-controller-attribute-error | 1 | ||||
-rw-r--r-- | src/leap/bitmask/services/mail/conductor.py | 4 |
2 files changed, 4 insertions, 1 deletions
diff --git a/changes/bug_7093-fix-controller-attribute-error b/changes/bug_7093-fix-controller-attribute-error new file mode 100644 index 00000000..77161e46 --- /dev/null +++ b/changes/bug_7093-fix-controller-attribute-error @@ -0,0 +1 @@ +- Fix controller attribute error. Closes: #7093 diff --git a/src/leap/bitmask/services/mail/conductor.py b/src/leap/bitmask/services/mail/conductor.py index b76ce436..2f1d20e6 100644 --- a/src/leap/bitmask/services/mail/conductor.py +++ b/src/leap/bitmask/services/mail/conductor.py @@ -94,7 +94,9 @@ class IMAPControl(object): """ On mail client logged in, fetch incoming mail. """ - self._controller.imap_service_fetch() + # XXX needs to be adapted to the new-ish incoming mail service. + # Doing nothing for now, this could be moved to mail package itself. + logger.debug("A MUA has logged in, should react by forcing a fetch.") def _on_imap_connecting(self): """ |