зеркало из https://github.com/mozilla/pjs.git
work around 9306, unable to load more than one message
This commit is contained in:
Родитель
323f3b1124
Коммит
9b913c02f4
|
@ -2074,7 +2074,7 @@ nsImapMailFolder::NormalEndMsgWriteStream(nsIImapProtocol* aProtocol)
|
|||
nsFileURL fileURL(filePath);
|
||||
char * message_path_url = PL_strdup(fileURL.GetAsString());
|
||||
|
||||
res = webShell->LoadURL(nsAutoString(message_path_url).GetUnicode(), nsnull, PR_TRUE, nsURLReload, 0);
|
||||
res = webShell->LoadURL(nsAutoString(message_path_url).GetUnicode(), nsnull, PR_TRUE, nsURLReloadBypassCache, 0);
|
||||
|
||||
PR_FREEIF(message_path_url);
|
||||
}
|
||||
|
|
|
@ -170,7 +170,7 @@ PRInt32 nsMailboxProtocol::DoneReadingMessage()
|
|||
nsFileURL fileURL(filePath);
|
||||
char * message_path_url = PL_strdup(fileURL.GetAsString());
|
||||
|
||||
rv = m_displayConsumer->LoadURL(nsAutoString(message_path_url).GetUnicode(), nsnull, PR_TRUE, nsURLReload, 0);
|
||||
rv = m_displayConsumer->LoadURL(nsAutoString(message_path_url).GetUnicode(), nsnull, PR_TRUE, nsURLReloadBypassCache, 0);
|
||||
|
||||
PR_FREEIF(message_path_url);
|
||||
|
||||
|
|
|
@ -2126,7 +2126,7 @@ PRInt32 nsNNTPProtocol::ReadArticle(nsIInputStream * inputStream, PRUint32 lengt
|
|||
printf("load this url to display the message: %s\n", article_path_url);
|
||||
#endif
|
||||
|
||||
m_displayConsumer->LoadURL(nsAutoString(article_path_url).GetUnicode(), nsnull, PR_TRUE, nsURLReload, 0);
|
||||
m_displayConsumer->LoadURL(nsAutoString(article_path_url).GetUnicode(), nsnull, PR_TRUE, nsURLReloadBypassCache, 0);
|
||||
|
||||
PR_FREEIF(article_path_url);
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче