Fix tracker scraping in tracker_reply_alert.
This commit is contained in:
parent
5e46ac1b42
commit
ea49afb9c3
|
@ -486,7 +486,7 @@ class TorrentManager(component.Component):
|
||||||
if alert.handle.status().num_complete == -1 or \
|
if alert.handle.status().num_complete == -1 or \
|
||||||
alert.handle.status().num_incomplete == -1:
|
alert.handle.status().num_incomplete == -1:
|
||||||
# We didn't get peer information, so lets send a scrape request
|
# We didn't get peer information, so lets send a scrape request
|
||||||
self.scrape_tracker(torrent_id)
|
self.torrents[torrent_id].scrape_tracker()
|
||||||
|
|
||||||
def on_alert_tracker_announce(self, alert):
|
def on_alert_tracker_announce(self, alert):
|
||||||
log.debug("on_alert_tracker_announce")
|
log.debug("on_alert_tracker_announce")
|
||||||
|
|
Loading…
Reference in New Issue