Skip to content
Open
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
4 changes: 4 additions & 0 deletions src/js/proxified-containers.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,10 @@ proxifiedContainers = {
return false;
}

if (!matches.groups.port) {
matches.groups.port = 1080;
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

IIRC, HTTP(S) have a different default port. Since we're accepting both SOCKS and HTTPS, we should also consider this scenario.

Copy link

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

FTR, cleartext HTTP CONNECT and HTTPS are different protocols - are both actually (intended to be) supported? Couldn't find supported protocols actually documented and I was previously of understanding that HTTP but not HTTPS is supported.

}

if (mozillaVpnData && mozillaVpnData.mozProxyEnabled === undefined) {
matches.groups.type = null;
}
Expand Down