mirror of
https://git.deluge-torrent.org/deluge
synced 2025-09-10 20:15:38 +00:00
Fix issue where hosts will show up erroneously as Offline
This commit is contained in:
parent
c312cf4b91
commit
9878fced37
2 changed files with 2 additions and 1 deletions
|
@ -24,6 +24,7 @@
|
|||
while the window is visible.
|
||||
* Fix #782 do not ask for tray password when window is not minimized to tray
|
||||
* Fix #1036 autoconnecting to localhost daemon on start-up
|
||||
* Fix issue where hosts will show up erroneously as Offline
|
||||
|
||||
==== Console ====
|
||||
* Fix using the console in Windows, but only in command-line mode
|
||||
|
|
|
@ -283,7 +283,7 @@ class ConnectionManager(component.Component):
|
|||
d.addCallback(on_info, c)
|
||||
d.addErrback(on_info_fail, c)
|
||||
|
||||
def on_connect_failed(reason, host_info):
|
||||
def on_connect_failed(reason, host_id):
|
||||
if not self.running:
|
||||
return
|
||||
row = self.__get_host_row(host_id)
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue