Fix for bug 154734. We need to unsecape the original message uri else IMAP will have trouble to deal with it. R=cavin, SR=bienvenu

This commit is contained in:
ducarroz%netscape.com 2002-06-28 20:12:34 +00:00
parent bc73d733c2
commit 3f4117a1f6

View File

@ -280,6 +280,7 @@ mime_dump_attachments ( attachmentList );
PRInt32 i = msgURI.FindChar('?');
if (i != kNotFound)
msgURI.Truncate(i);
NS_UnescapeURL(msgURI);
pMsgComposeParams->SetOriginalMsgURI(msgURI.get());
rv = msgComposeService->OpenComposeWindowWithParams(nsnull /* default chrome */, pMsgComposeParams);