1
0
Fork 0
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:
Charles Kerr 2010-01-22 07:32:02 +00:00
parent 2be24ec9a8
commit 451cca4a5e

View file

@ -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 );