mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-03-03 07:01:19 +00:00
fix imap msgs filtering multiple times by not filtering deleted messages r=naving sr=mscott 57938
This commit is contained in:
parent
225cdbd87d
commit
b255c13af9
@ -2163,7 +2163,7 @@ NS_IMETHODIMP nsImapMailFolder::NormalEndHeaderParseStream(nsIImapProtocol*
|
||||
PRUint32 msgFlags;
|
||||
|
||||
newMsgHdr->GetFlags(&msgFlags);
|
||||
if (!(msgFlags & (MSG_FLAG_READ || MSG_FLAG_IMAP_DELETED))) // only fire on unread msgs that haven't been deleted
|
||||
if (!(msgFlags & (MSG_FLAG_READ | MSG_FLAG_IMAP_DELETED))) // only fire on unread msgs that haven't been deleted
|
||||
{
|
||||
rv = m_msgParser->GetAllHeaders(&headers, &headersSize);
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user