mirror of
https://git.deluge-torrent.org/deluge
synced 2025-04-20 11:35:49 +00:00
[Core] Reset trackers in force_recheck only if paused
This commit is contained in:
parent
5f5b6fad0b
commit
f9b7892976
1 changed files with 2 additions and 1 deletions
|
@ -940,7 +940,8 @@ class Torrent(object):
|
|||
except Exception, e:
|
||||
log.debug("Unable to force recheck: %s", e)
|
||||
self.forcing_recheck = False
|
||||
self.set_trackers(torrent.trackers, reannounce=False)
|
||||
if self.forcing_recheck_paused:
|
||||
self.set_trackers(torrent.trackers, reannounce=False)
|
||||
|
||||
return self.forcing_recheck
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue