work around 9306, unable to load more than one message

This commit is contained in:
bienvenu%netscape.com 1999-07-07 04:01:38 +00:00
Родитель 323f3b1124
Коммит 9b913c02f4
3 изменённых файлов: 3 добавлений и 3 удалений

Просмотреть файл

@ -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);
}