Bug #3754 and Bug #3369 --> the total message size we are using when fetching by chunks may just be an approximation.

after the first fetch, we'll possibly get back a RFC822.SIZE which will have the exact size of the total message.
Update the # bytes we need to download to match this new value if appropriate.

sr=bienvenu


git-svn-id: svn://10.0.0.236/trunk@85862 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
mscott%netscape.com
2001-01-31 20:57:57 +00:00
parent 04c85f4b85
commit bb801e7c32

View File

@@ -2670,6 +2670,9 @@ void nsImapProtocol::FetchTryChunking(const char * messageIds,
startByte, sizeToFetch,
part);
startByte += sizeToFetch;
PRUint32 newMsgSize = GetServerStateParser().SizeOfMostRecentMessage();
if (newMsgSize > 0 && newMsgSize != downloadSize)
downloadSize = newMsgSize;
}
// Only abort the stream if this is a normal message download