From 1f5cfd16e0d39508c8ea8f4f5518129356caf3f0 Mon Sep 17 00:00:00 2001 From: Calum Lind Date: Wed, 29 Feb 2012 02:56:01 +0000 Subject: Updates to previous fixes for setting is_finished --- deluge/core/torrentmanager.py | 8 ++++++-- 1 file changed, 6 insertions(+), 2 deletions(-) diff --git a/deluge/core/torrentmanager.py b/deluge/core/torrentmanager.py index f20591438..7ab433d00 100644 --- a/deluge/core/torrentmanager.py +++ b/deluge/core/torrentmanager.py @@ -877,7 +877,7 @@ class TorrentManager(component.Component): component.get("EventManager").emit(TorrentFinishedEvent(torrent_id)) - torrent.is_finished = torrent.handle.is_seed() + torrent.is_finished = True torrent.update_state() # Only save resume data if it was actually downloaded something. Helps @@ -924,7 +924,6 @@ class TorrentManager(component.Component): if torrent.forcing_recheck_paused: torrent.handle.pause() - torrent.is_finished = torrent.handle.is_seed() # Set the torrent state torrent.update_state() @@ -1008,6 +1007,11 @@ class TorrentManager(component.Component): old_state = torrent.state torrent.update_state() + + # Torrent may need to download data after checking. + if torrent.state == 'Checking': + torrent.is_finished = False + # Only emit a state changed event if the state has actually changed if torrent.state != old_state: component.get("EventManager").emit(TorrentStateChangedEvent(torrent_id, torrent.state)) -- cgit