From 38b97ccf1376c666e38f4d4233c3dc51d083e1db Mon Sep 17 00:00:00 2001 From: Mitchell Livingston Date: Sun, 17 Dec 2006 17:35:39 +0000 Subject: [PATCH] don't scrape if stopping --- libtransmission/tracker.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libtransmission/tracker.c b/libtransmission/tracker.c index 0e57c4089..87fd774d4 100644 --- a/libtransmission/tracker.c +++ b/libtransmission/tracker.c @@ -291,7 +291,7 @@ static int shouldScrape( tr_tracker_t * tc ) uint64_t now, interval; /* in process of changing tracker or scrape not supported */ - if( tc->shouldChangeAnnounce != TC_CHANGE_NO || !tc->trackerCanScrape ) + if( tc->shouldChangeAnnounce != TC_CHANGE_NO || !tc->trackerCanScrape || tc->stopped ) { return 0; }