Do not count downloads as seeds in the queue system.

This commit is contained in:
Andrew Resch
2008-07-01 21:07:18 +00:00
parent b354e7e0d9
commit 94cbac20cd
2 changed files with 5 additions and 9 deletions

View File

@@ -1390,7 +1390,6 @@ namespace aux {
&& t->state() != torrent_status::checking_files)
{
--num_downloaders;
--num_seeds;
if (t->is_paused()) t->resume();
}
}
@@ -1413,7 +1412,6 @@ namespace aux {
if (num_seeds > 0 && hard_limit > 0)
{
--hard_limit;
--num_downloaders;
--num_seeds;
if (t->is_paused()) t->resume();
}