зеркало из https://github.com/mozilla/pjs.git
#97834, checking in the final change to not mark a msg as read in the db if it already is...
r/sr=bienvenu, sspitzer
This commit is contained in:
Родитель
be7d4d271c
Коммит
d31f268959
|
@ -356,7 +356,9 @@ PRInt32 nsMailboxProtocol::DoneReadingMessage()
|
|||
nsCOMPtr<nsIMsgDBHdr> msgHdr;
|
||||
|
||||
rv = m_runningUrl->GetMessageHeader(getter_AddRefs(msgHdr));
|
||||
if (NS_SUCCEEDED(rv))
|
||||
PRBool isRead;
|
||||
msgHdr->GetIsRead(&isRead);
|
||||
if (NS_SUCCEEDED(rv) && !isRead)
|
||||
{
|
||||
NS_ASSERTION(msgHdr, "no msg hdr!");
|
||||
if (!msgHdr) return NS_ERROR_UNEXPECTED;
|
||||
|
|
Загрузка…
Ссылка в новой задаче