Bug 1026347 - Session:Prefetch should watch for empty nsIURI.host r=bnicholson

This commit is contained in:
Mark Finkle 2014-06-17 09:52:37 -04:00
Родитель 7c2bec86ba
Коммит a95a74d6c0
1 изменённых файлов: 4 добавлений и 4 удалений

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

@ -8092,12 +8092,12 @@ var Tabs = {
case "Session:Prefetch":
if (aData) {
let uri = Services.io.newURI(aData, null, null);
if (uri && !this._domains.has(uri.host)) {
try {
try {
if (uri && !this._domains.has(uri.host)) {
Services.io.QueryInterface(Ci.nsISpeculativeConnect).speculativeConnect(uri, null);
this._domains.add(uri.host);
} catch (e) {}
}
}
} catch (e) {}
}
break;
}