Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Tor Browser
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Operate
Environments
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
The Tor Project
Applications
Tor Browser
Commits
7e637a11
Verified
Commit
7e637a11
authored
1 year ago
by
ma1
Committed by
Pier Angelo Vendrame
2 months ago
Browse files
Options
Downloads
Patches
Plain Diff
BB 42194: Fix blank net error page on failed DNS resolution with active proxy.
parent
41d4938d
No related branches found
Branches containing commit
No related tags found
Tags containing commit
1 merge request
!1327
TB 43387: Rebased Tor Browser alpha onto 128.6.0esr
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
toolkit/actors/NetErrorChild.sys.mjs
+9
-6
9 additions, 6 deletions
toolkit/actors/NetErrorChild.sys.mjs
with
9 additions
and
6 deletions
toolkit/actors/NetErrorChild.sys.mjs
+
9
−
6
View file @
7e637a11
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
Pier Angelo Vendrame
@pierov
mentioned in issue
#40789
·
1 month ago
mentioned in issue
#40789
mentioned in issue #40789
Toggle commit list
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment