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:
@@ -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
|
||||
|
||||
Reference in New Issue
Block a user