Comment 5 for bug 322256

Revision history for this message
In , Sspitzer (sspitzer) wrote :

related weird note: when I get into this bad state, my unread count is negative
(-1 in my case) and that causes the green icon in the thread column.

nsMsgDBView.cpp, line 4287, we ask the thread for the unread count which is -1.

but it's an unsigned int, so -1 is really a big int, which is > 0 so we show unread.

Investigating...