[tor-commits] [Git][tpo/applications/mullvad-browser][mullvad-browser-115.4.0esr-13.5-1] Bug 42194: Fix blank net error page on failed DNS resolution with active proxy.
ma1 (@ma1)
git at gitlab.torproject.org
Tue Nov 7 16:22:56 UTC 2023
ma1 pushed to branch mullvad-browser-115.4.0esr-13.5-1 at The Tor Project / Applications / Mullvad Browser
Commits:
5cb306c9 by hackademix at 2023-11-07T17:22:34+01:00
Bug 42194: Fix blank net error page on failed DNS resolution with active proxy.
- - - - -
1 changed file:
- toolkit/actors/NetErrorChild.sys.mjs
Changes:
=====================================
toolkit/actors/NetErrorChild.sys.mjs
=====================================
@@ -133,12 +133,15 @@ export class NetErrorChild extends RemotePageChild {
shortDesc.appendChild(span);
},
};
-
- Services.uriFixup.checkHost(
- info.fixedURI,
- onLookupCompleteListener,
- this.document.nodePrincipal.originAttributes
- );
+ try {
+ Services.uriFixup.checkHost(
+ info.fixedURI,
+ onLookupCompleteListener,
+ this.document.nodePrincipal.originAttributes
+ );
+ } catch (e) {
+ // DNS resolution may fail synchronously if forbidden by proxy
+ }
}
// Get the header from the http response of the failed channel. This function
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/5cb306c903900ad8dde25b57bae052927b95ded3
--
View it on GitLab: https://gitlab.torproject.org/tpo/applications/mullvad-browser/-/commit/5cb306c903900ad8dde25b57bae052927b95ded3
You're receiving this email because of your account on gitlab.torproject.org.
-------------- next part --------------
An HTML attachment was scrubbed...
URL: <http://lists.torproject.org/pipermail/tor-commits/attachments/20231107/cde87e8c/attachment-0001.htm>
More information about the tor-commits
mailing list