mirror of
https://github.com/transmission/transmission
synced 2024-12-23 08:13:27 +00:00
(trunk libT) in tr_torrentCheckSeedRadio(), make sure to check & see if the torrent is running ;)
This commit is contained in:
parent
3ffbb31774
commit
6f994f6708
1 changed files with 1 additions and 1 deletions
|
@ -2135,7 +2135,7 @@ tr_torrentCheckSeedRatio( tr_torrent * tor )
|
||||||
assert( tr_isTorrent( tor ) );
|
assert( tr_isTorrent( tor ) );
|
||||||
|
|
||||||
/* if we're seeding and we've reached our seed ratio limit, stop the torrent */
|
/* if we're seeding and we've reached our seed ratio limit, stop the torrent */
|
||||||
if( tr_torrentIsSeed( tor ) && tr_torrentGetSeedRatio( tor, &seedRatio ) )
|
if( tor->isRunning && tr_torrentIsSeed( tor ) && tr_torrentGetSeedRatio( tor, &seedRatio ) )
|
||||||
{
|
{
|
||||||
const uint64_t up = tor->uploadedCur + tor->uploadedPrev;
|
const uint64_t up = tor->uploadedCur + tor->uploadedPrev;
|
||||||
uint64_t down = tor->downloadedCur + tor->downloadedPrev;
|
uint64_t down = tor->downloadedCur + tor->downloadedPrev;
|
||||||
|
|
Loading…
Reference in a new issue