diff options
| -rw-r--r-- | mail/src/leap/mail/imap/messages.py | 4 | 
1 files changed, 2 insertions, 2 deletions
diff --git a/mail/src/leap/mail/imap/messages.py b/mail/src/leap/mail/imap/messages.py index b0b2f95..11dcd8f 100644 --- a/mail/src/leap/mail/imap/messages.py +++ b/mail/src/leap/mail/imap/messages.py @@ -1337,7 +1337,7 @@ class MessageCollection(WithMsgFields, IndexedDB, MBoxParser):          :returns: a list of LeapMessages          :rtype: list          """ -        return [LeapMessage(self._soledad, docid, self.mbox) +        return [LeapMessage(self._soledad, docid, self.mbox, collection=self)                  for docid in self.unseen_iter()]      # recent messages @@ -1370,7 +1370,7 @@ class MessageCollection(WithMsgFields, IndexedDB, MBoxParser):          :returns: iterator of dicts with content for all messages.          :rtype: iterable          """ -        return (LeapMessage(self._soledad, docuid, self.mbox) +        return (LeapMessage(self._soledad, docuid, self.mbox, collection=self)                  for docuid in self.all_uid_iter())      def __repr__(self):  | 
