diff --git a/devtools/shared/webconsole/network-monitor.js b/devtools/shared/webconsole/network-monitor.js index 18647e059c..25e188cf75 100644 --- a/devtools/shared/webconsole/network-monitor.js +++ b/devtools/shared/webconsole/network-monitor.js @@ -1338,13 +1338,13 @@ NetworkMonitor.prototype = { try { response.remoteAddress = httpActivity.channel.remoteAddress; } catch (e) { - Cu.reportError(e); + if (e.result != Cr.NS_ERROR_NOT_AVAILABLE) Cu.reportError(e); } response.remotePort = null; try { response.remotePort = httpActivity.channel.remotePort; } catch (e) { - Cu.reportError(e); + if (e.result != Cr.NS_ERROR_NOT_AVAILABLE) Cu.reportError(e); } response.status = statusLineArray.shift(); response.statusText = statusLineArray.join(" ");