Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Default to direct connection is no proxy information is found #80

Merged
merged 2 commits into from
May 20, 2019
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 5 additions & 0 deletions px.py
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -1345,6 +1345,11 @@ def find_proxy_for_url(url):
if proxy_str.startswith("DIRECT,"):
proxy_str = "DIRECT"

# If the proxy_str it still empty at this point, then there is no proxy
# configured. Try to do a direct connection.
if proxy_str == "":
proxy_str = "DIRECT"

dprint("Proxy found: " + proxy_str)
return proxy_str

Expand Down