mirror of
https://github.com/transmission/transmission
synced 2024-12-25 09:13:06 +00:00
(trunk gtk) #2784 "Paused seeding torrents still display 'Remaining time unknown'" -- fixed in trunk for 1.81
This commit is contained in:
parent
2be24ec9a8
commit
451cca4a5e
1 changed files with 2 additions and 1 deletions
|
@ -107,7 +107,8 @@ getProgressString( const tr_torrent * tor,
|
|||
}
|
||||
|
||||
/* add time when downloading */
|
||||
if( hasSeedRatio || ( torStat->activity == TR_STATUS_DOWNLOAD ) )
|
||||
if( ( torStat->activity == TR_STATUS_DOWNLOAD )
|
||||
|| ( hasSeedRatio && ( torStat->activity == TR_STATUS_SEED ) ) )
|
||||
{
|
||||
const int eta = torStat->eta;
|
||||
GString * gstr = g_string_new( str );
|
||||
|
|
Loading…
Reference in a new issue