зеркало из https://github.com/mozilla/gecko-dev.git
Bug 1026347 - Session:Prefetch should watch for empty nsIURI.host r=bnicholson
This commit is contained in:
Родитель
7c2bec86ba
Коммит
a95a74d6c0
|
@ -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;
|
||||
}
|
||||
|
|
Загрузка…
Ссылка в новой задаче