Comment 280 for bug 113201

Revision history for this message
In , Cgijm (cgijm) wrote :

Going back to an older post, this does seem to fix the issue:

function FindProxyForURL(url, host)
{
  //So the error message "no such host" will appear through the
  //normal Netscape box - less support queries :)
  if (!isResolvable(host))
    return "DIRECT";
...