Skip to content

Commit

Permalink
fix: use default 1080 if port is not provided
Browse files Browse the repository at this point in the history
  • Loading branch information
leodag committed Aug 1, 2023
1 parent f20688c commit 3bf0313
Showing 1 changed file with 4 additions and 0 deletions.
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;
}

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

0 comments on commit 3bf0313

Please sign in to comment.