fix pop3 new mail notification when using global inbox, sr=mscott 260076

This commit is contained in:
bienvenu%nventure.com 2004-10-14 14:16:28 +00:00
parent 011d77d870
commit 4c66fc7c4a

View File

@ -339,7 +339,11 @@ NS_IMETHODIMP nsPop3IncomingServer::PerformBiff(nsIMsgWindow *aMsgWindow)
if (NS_FAILED(rv) || numFolders != 1) return rv;
}
SetPerformingBiff(PR_TRUE);
nsCOMPtr <nsIMsgIncomingServer> server;
inbox->GetServer(getter_AddRefs(server));
server->SetPerformingBiff(PR_TRUE);
urlListener = do_QueryInterface(inbox);
PRBool downloadOnBiff = PR_FALSE;