mirror of
https://git.deluge-torrent.org/deluge
synced 2025-08-05 16:08:40 +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)
|
Deluge 1.1.0_RC3 (In Development)
|
||||||
|
Core:
|
||||||
|
* Fix applying proxy settings
|
||||||
|
|
||||||
GtkUI:
|
GtkUI:
|
||||||
* Fix folder renaming to display the change properly
|
* Fix folder renaming to display the change properly
|
||||||
|
|
||||||
|
|
|
@ -461,7 +461,7 @@ class PreferencesManager(component.Component):
|
||||||
for k, v in value.items():
|
for k, v in value.items():
|
||||||
if v["type"]:
|
if v["type"]:
|
||||||
proxy_settings = lt.proxy_settings()
|
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.username = v["username"]
|
||||||
proxy_settings.password = v["password"]
|
proxy_settings.password = v["password"]
|
||||||
proxy_settings.hostname = v["hostname"]
|
proxy_settings.hostname = v["hostname"]
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue