Hello I am trying to edit a pac file just to make an addition. Currently this line exists in the PAC
if (isInNet(resolved_ip, "192.168.1.1","255.255.0.0"))
return "DIRECT";
This works. If I try to add another IP with
|| (isInNet(resolved_ip, β172.67.205.243β,β255.255.255.255β))
I get an error " Parsing Error Unexpected token"
Not sure why any help would be appreciated.