#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:
hwaara%chello.se 2001-09-06 19:20:49 +00:00
Родитель be7d4d271c
Коммит d31f268959
1 изменённых файлов: 3 добавлений и 1 удалений

Просмотреть файл

@ -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;