зеркало из https://github.com/mozilla/pjs.git
Slightly speed up opening a mail folder by using IsHeaderRead instead of IsRead. r=bienvenu.
This commit is contained in:
Родитель
1869d08630
Коммит
6a9a13ff8f
|
@ -1109,7 +1109,7 @@ PRUint32 nsMsgDatabase::GetStatusFlags(nsIMsgDBHdr *msgHdr, PRUint32 origFlags)
|
|||
(void)msgHdr->GetMessageKey(&key);
|
||||
if (m_newSet && m_newSet->IsMember(key))
|
||||
statusFlags |= MSG_FLAG_NEW;
|
||||
if (IsRead(key, &isRead) == NS_OK && isRead)
|
||||
if (IsHeaderRead(msgHdr, &isRead) == NS_OK && isRead)
|
||||
statusFlags |= MSG_FLAG_READ;
|
||||
return statusFlags;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче