From f6e8f6d13e685ede106dab54602ab6dc664da29f Mon Sep 17 00:00:00 2001 From: Marcos Pinto Date: Tue, 26 Jun 2007 08:53:48 +0000 Subject: [PATCH] save fast resume once torrent finshes so as to not recheck seed if client crashes --- src/core.py | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/core.py b/src/core.py index 8e6a9e078..5fa5589a9 100644 --- a/src/core.py +++ b/src/core.py @@ -502,6 +502,8 @@ class Manager: # If we are autoseeding, then we need to apply the queue if self.get_pref('auto_seed_ratio') == -1: self.apply_queue(efficient = False) # To work on current data + #save fast resume once torrent finshes so as to not recheck seed if client crashes + self.save_fastresume_data(event['unique_ID']) elif event['event_type'] is self.constants['EVENT_TRACKER']: unique_ID = event['unique_ID'] status = event['tracker_status']