fix: use default 1080 if port is not provided

This commit is contained in:
Leonardo Dagnino 2023-08-02 00:01:04 +02:00
parent f20688c453
commit 3bf03133c8

View file

@ -50,6 +50,10 @@ proxifiedContainers = {
return false;
}
if (!matches.groups.port) {
matches.groups.port = 1080;
}
if (mozillaVpnData && mozillaVpnData.mozProxyEnabled === undefined) {
matches.groups.type = null;
}