mirror of
https://github.com/rakshasa/rtorrent.git
synced 2026-08-14 22:22:31 +00:00
Don't display scrape requests.
This commit is contained in:
@@ -195,10 +195,10 @@ print_download_status(char* first, char* last, core::Download* d) {
|
||||
first = print_buffer(first, last, "Checking hash [%2i%%]",
|
||||
(d->download()->chunks_hashed() * 100) / d->download()->file_list()->size_chunks());
|
||||
|
||||
} else if (d->tracker_list()->has_active()) {
|
||||
} else if (d->tracker_list()->has_active_not_scrape()) {
|
||||
torrent::TrackerList::iterator itr =
|
||||
std::find_if(d->tracker_list()->begin(), d->tracker_list()->end(),
|
||||
std::mem_fun(&torrent::Tracker::is_busy));
|
||||
std::mem_fun(&torrent::Tracker::is_busy_not_scrape));
|
||||
char status[128];
|
||||
|
||||
(*itr)->get_status(status, sizeof(status));
|
||||
|
||||
Reference in New Issue
Block a user