fixed typo that would sometimes prevent queued torrents to be checked
This commit is contained in:
parent
a80b2b0fce
commit
47d2325145
|
@ -84,6 +84,7 @@
|
||||||
release 0.14.8
|
release 0.14.8
|
||||||
|
|
||||||
* ignore unkown metadata messages
|
* ignore unkown metadata messages
|
||||||
|
* fixed typo that would sometimes prevent queued torrents to be checked
|
||||||
|
|
||||||
release 0.14.7
|
release 0.14.7
|
||||||
|
|
||||||
|
|
|
@ -1440,7 +1440,8 @@ namespace aux {
|
||||||
++uncongested_torrents;
|
++uncongested_torrents;
|
||||||
|
|
||||||
if (t.state() == torrent_status::checking_files) ++num_checking;
|
if (t.state() == torrent_status::checking_files) ++num_checking;
|
||||||
else if (t.state() == torrent_status::queued_for_checking)
|
else if (t.state() == torrent_status::queued_for_checking) ++num_queued;
|
||||||
|
|
||||||
if (t.is_auto_managed() && t.is_paused() && !t.has_error())
|
if (t.is_auto_managed() && t.is_paused() && !t.has_error())
|
||||||
{
|
{
|
||||||
++num_paused_auto_managed;
|
++num_paused_auto_managed;
|
||||||
|
|
Loading…
Reference in New Issue