mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 19:44:52 +00:00
Fix applying proxy settings
This commit is contained in:
parent
08b92148ca
commit
b3aa588650
2 changed files with 4 additions and 1 deletions
|
@ -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
|
||||
|
||||
|
|
|
@ -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"]
|
||||
|
|
Loading…
Add table
Reference in a new issue