mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-04-03 04:52:54 +00:00
Bug #16263 --> CreateListOfMessageIDStrings should look for '?' as the delimiter used by
mime for each message part instead of '&'. r=sspitzer
This commit is contained in:
parent
6e9c861c93
commit
325c1a107a
@ -309,9 +309,9 @@ NS_IMETHODIMP nsImapUrl::CreateListOfMessageIdsString(nsCString *aResult)
|
||||
// the part. Pop and news work this way also.
|
||||
// this algorithm truncates the "&part" string.
|
||||
char *currentChar = m_listOfMessageIds;
|
||||
while (*currentChar && (*currentChar != '&'))
|
||||
while (*currentChar && (*currentChar != '?'))
|
||||
currentChar++;
|
||||
if (*currentChar == '&')
|
||||
if (*currentChar == '?')
|
||||
bytesToCopy = currentChar - m_listOfMessageIds;
|
||||
|
||||
// we should also strip off anything after "/;section="
|
||||
|
Loading…
x
Reference in New Issue
Block a user