Fix applying proxy settings

This commit is contained in:
Andrew Resch 2009-01-02 21:25:26 +00:00
parent 08b92148ca
commit b3aa588650
2 changed files with 4 additions and 1 deletions

View file

@ -1,4 +1,7 @@
Deluge 1.1.0_RC3 (In Development)
Core:
* Fix applying proxy settings
GtkUI:
* Fix folder renaming to display the change properly

View file

@ -461,7 +461,7 @@ class PreferencesManager(component.Component):
for k, v in value.items():
if v["type"]:
proxy_settings = lt.proxy_settings()
proxy_settings.proxy_type = lt.proxy_type(v["type"])
proxy_settings.type = lt.proxy_type(v["type"])
proxy_settings.username = v["username"]
proxy_settings.password = v["password"]
proxy_settings.hostname = v["hostname"]