Changeset eeac8ef


Ignore:
Timestamp:
12/14/2009 12:48:18 AM (15 years ago)
Author:
Andrew Resch <andrewresch@gmail.com>
Children:
e27c38
Parents:
f59901c
Message:

Fix issue where stoping a daemon that you aren't connected to causes the gtkui to shutdown the
currently connected daemon.

Files:
2 edited

Legend:

Unmodified
Added
Removed
  • ChangeLog

    rf59901c reeac8ef  
    2727        * Fix issue where hosts will show up erroneously as Offline
    2828        * Add #891 remove torrents by pressing the Delete key
     29        * Fix issue where stoping a daemon that you aren't connected to causes the
     30          gtkui to shutdown the currently connected daemon.
    2931
    3032==== Console ====
  • deluge/ui/gtkui/connectionmanager.py

    rf59901c reeac8ef  
    527527                # Update display to show change
    528528                self.__update_list()
    529             if client.connected():
     529            if client.connected() and client.connection_info() == (host, port, user):
    530530                client.daemon.shutdown().addCallback(on_daemon_shutdown)
    531531            else:
Note: See TracChangeset for help on using the changeset viewer.