diff options
author | Kali Kaneko <kali@leap.se> | 2014-01-20 11:38:19 -0400 |
---|---|---|
committer | Kali Kaneko <kali@leap.se> | 2014-01-20 11:38:19 -0400 |
commit | a50c880f43d1aef00fd233318d9413e01fb3aa3f (patch) | |
tree | 9b421575a1c3d41e09936d50aa2d3a44aec3b7cd /src/leap/mail | |
parent | 7e79576ce81ebfb055947e987355a43c8b050f0f (diff) |
Fix typo in the signal_unread method. Closes: #5001
It had been made public to be called from the overwritten methods
in service.imap
Diffstat (limited to 'src/leap/mail')
-rw-r--r-- | src/leap/mail/imap/mailbox.py | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/leap/mail/imap/mailbox.py b/src/leap/mail/imap/mailbox.py index b186e75..a167531 100644 --- a/src/leap/mail/imap/mailbox.py +++ b/src/leap/mail/imap/mailbox.py @@ -707,7 +707,7 @@ class SoledadMailbox(WithMsgFields, MBoxParser): # this should really be called as a final callback of # the do_STORE method... from twisted.internet import reactor - deferLater(reactor, 1, self._signal_unread_to_ui) + deferLater(reactor, 1, self.signal_unread_to_ui) return result # ISearchableMailbox |