From 96ead0d996ed83d48cefc2396598c2232d8363be Mon Sep 17 00:00:00 2001 From: Andrew Resch Date: Sat, 21 Mar 2009 18:45:47 +0000 Subject: [PATCH] Fix #855 force a resume on a torrent if a 'Force Recheck' is initiated --- deluge/core/torrent.py | 1 + 1 file changed, 1 insertion(+) diff --git a/deluge/core/torrent.py b/deluge/core/torrent.py index a3fbfef8a..88c5cf182 100644 --- a/deluge/core/torrent.py +++ b/deluge/core/torrent.py @@ -838,6 +838,7 @@ class Torrent: """Forces a recheck of the torrents pieces""" try: self.handle.force_recheck() + self.handle.resume() except Exception, e: log.debug("Unable to force recheck: %s", e) return False