forked from premiere/premiere-libtorrent
fixed num_queued counting
This commit is contained in:
parent
39dae9e6dc
commit
0f351cfd62
|
@ -1442,7 +1442,7 @@ namespace aux {
|
|||
++uncongested_torrents;
|
||||
|
||||
if (t.state() == torrent_status::checking_files) ++num_checking;
|
||||
else if (t.state() == torrent_status::queued_for_checking) ++num_queued;
|
||||
else if (t.state() == torrent_status::queued_for_checking && !t.is_paused()) ++num_queued;
|
||||
|
||||
if (t.is_auto_managed() && t.is_paused() && !t.has_error())
|
||||
{
|
||||
|
|
Loading…
Reference in New Issue