Bug 287677 dropping unknown scheme on a tab produces 2 errors, rather than 1, r=mconnor

This commit is contained in:
jminta%gmail.com 2007-08-22 05:04:39 +00:00
Родитель 3830a64de6
Коммит e88b9043c8
1 изменённых файлов: 7 добавлений и 4 удалений

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

@ -1652,10 +1652,13 @@
else {
// Load in an existing tab.
var tab = aEvent.target;
this.getBrowserForTab(tab).loadURI(getShortcutOrURI(url));
if (this.mCurrentTab != tab && !bgLoad)
this.selectedTab = tab;
try {
this.getBrowserForTab(tab).loadURI(getShortcutOrURI(url));
if (this.mCurrentTab != tab && !bgLoad)
this.selectedTab = tab;
} catch(ex) {
// Just ignore invalid urls
}
}
}
]]>