uri dispatching tweak...doContent shouldn't explictly check for message/rfc822

r=sspitzer
This commit is contained in:
mscott%netscape.com 1999-11-18 08:59:53 +00:00
Родитель 4569b85f36
Коммит fd3dd747da
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -205,7 +205,7 @@ NS_IMETHODIMP nsMsgWindow::DoContent(const char *aContentType, const char *aComm
{
// we handle message/rfc822 content in our message window (which is mRootWebShell)
if (aContentType && PL_strcasecmp(aContentType, "message/rfc822") == 0)
if (aContentType /* nsCRT::strcasecmp(aContentType, "message/rfc822") == 0 */ )
{
// forward the DoContent call to our webshell
nsCOMPtr<nsIURIContentListener> ctnListener = do_QueryInterface(mMessageWindowWebShell);