Opened 2 years ago
Closed 19 months ago
#3538 closed bug (Fixed)
Adding host in console-UI fails.
Reported by: | mhertz | Owned by: | |
---|---|---|---|
Priority: | minor | Milestone: | 2.1.2 |
Component: | Console UI | Version: | develop |
Keywords: | Cc: |
Description
As title, currently it's not possible to add new host in console-UI as states port need be integer.
I added some debug-prints and found the 'result' dict indeed saves port as string, e.g. I tested it worked here just changing line 107 of connectionmanager.py from/to:
result['port']['value'],
int(result['port']['value']),
Also, currently when having input new host data and pressed return then need also press escape to get out of connection-manager, which i just changed in same file line 135 from/to:
self.update_select_host_popup()
self.pop_popup()
Thanks in advance.
Change History (2)
comment:1 by , 2 years ago
comment:2 by , 19 months ago
Milestone: | needs verified → 2.1.2 |
---|---|
Resolution: | → Fixed |
Status: | new → closed |
Fixed [543fce4f2]
Note:
See TracTickets
for help on using tickets.
PR: https://github.com/deluge-torrent/deluge/pull/393