mirror of
https://github.com/transmission/transmission
synced 2024-12-24 00:34:04 +00:00
refactor: remove redundant seed limit check (#5770)
This commit is contained in:
parent
f036b7c3bf
commit
0350b62248
1 changed files with 0 additions and 8 deletions
|
@ -1886,7 +1886,6 @@ void tr_torrent::recheck_completeness()
|
|||
if (new_completeness != completeness)
|
||||
{
|
||||
bool const recent_change = downloadedCur != 0;
|
||||
bool const was_leeching = !this->is_done();
|
||||
bool const was_running = is_running();
|
||||
|
||||
if (recent_change)
|
||||
|
@ -1921,13 +1920,6 @@ void tr_torrent::recheck_completeness()
|
|||
|
||||
this->session->onTorrentCompletenessChanged(this, completeness, was_running);
|
||||
|
||||
if (this->is_done() && was_leeching && was_running)
|
||||
{
|
||||
/* if completeness was TR_LEECH, the seed limit check
|
||||
will have been skipped in bandwidthPulse */
|
||||
tr_torrentCheckSeedLimit(this);
|
||||
}
|
||||
|
||||
this->set_dirty();
|
||||
|
||||
if (this->is_done())
|
||||
|
|
Loading…
Reference in a new issue