Bug 1134029 - Fix 'Component returned failure code: 0x80004005 (NS_ERROR_FAILURE) [nsIURI.host]' timeouts, r=jsantell

This commit is contained in:
Victor Porof 2015-03-05 22:19:44 -05:00
parent 54bc11c9de
commit a8bef79d9a

View File

@ -224,7 +224,7 @@ FrameNode.prototype = {
if (uri) {
functionName = this.location.substring(0, firstParenIndex - 1);
fileName = (uri.fileName + (uri.ref ? "#" + uri.ref : "")) || "/";
hostName = uri.host;
hostName = url.indexOf("jar:") == 0 ? "" : uri.host;
} else {
functionName = this.location;
url = null;