Fix URL loading when coming from a command line. Tree blocker 31702.

This commit is contained in:
tbogard%aol.net 2000-03-16 22:28:39 +00:00
Родитель 26976216de
Коммит 9179bc0f67
1 изменённых файлов: 1 добавлений и 1 удалений

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

@ -1174,7 +1174,7 @@ nsBrowserAppCore::LoadInitialPage(void)
* "about:blank" and there by return from here with out
* loading the command line url or default home page.
*/
if (NS_SUCCEEDED(rv) && nsCRT::strcasecmp(spec, "about:blank") == 0) {
if (NS_SUCCEEDED(rv) && nsCRT::strcasecmp(spec, "about:blank") != 0) {
// Something has already been loaded (probably via window.open),
// leave it be.
return NS_OK;