mirror of
https://github.com/transmission/transmission
synced 2025-01-31 11:23:40 +00:00
Fixup 2321bc3fad
(unintended logic change, spotted by cfpp2p in #297)
This commit is contained in:
parent
950387ab5a
commit
432d573f2c
1 changed files with 1 additions and 1 deletions
|
@ -1191,7 +1191,7 @@ static void on_announce_done(tr_announce_response const* response, void* vdata)
|
|||
|
||||
/* if the tracker included scrape fields in its announce response,
|
||||
then a separate scrape isn't needed */
|
||||
if (scrape_fields >= 3 || (scrape_fields >= 1 && tracker->scrape != NULL))
|
||||
if (scrape_fields >= 3 || (scrape_fields >= 1 && tracker->scrape == NULL))
|
||||
{
|
||||
tr_logAddTorDbg(tier->tor, "Announce response contained scrape info; "
|
||||
"rescheduling next scrape to %d seconds from now.", tier->scrapeIntervalSec);
|
||||
|
|
Loading…
Reference in a new issue