aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--proxy.js9
1 files changed, 6 insertions, 3 deletions
diff --git a/proxy.js b/proxy.js
index 134c40d..8448da8 100644
--- a/proxy.js
+++ b/proxy.js
@@ -62,14 +62,17 @@
var conf = proxy_settings[i].setting[j];
switch (conf.label) {
case "network.proxy.type":
+ case "network.proxy.http_port":
+ case "network.proxy.ssl_port":
prefs.setIntPref(conf.label, conf.param);
break;
case "network.proxy.http":
+ case "network.proxy.ssl":
+ case "network.proxy.no_proxies_on":
+ case "network.proxy.autoconfig_url":
+ case "network.proxy.socks":
prefs.setCharPref(conf.label, conf.param);
break;
- case "network.proxy.http_port":
- prefs.setIntPref(conf.label, conf.param);
- break;
}
}