#671 "torrent queuing" -- fix status string for queued torrents in transmission-remote

This commit is contained in:
Jordan Lee
2011-08-13 01:15:35 +00:00
parent ecb2054493
commit 35e6858c4b
+5
View File
@@ -766,6 +766,11 @@ getStatusString( tr_benc * t, char * buf, size_t buflen )
}
else switch( status )
{
case TR_STATUS_DOWNLOAD_WAIT:
case TR_STATUS_SEED_WAIT:
tr_strlcpy( buf, "Queued", buflen );
break;
case TR_STATUS_STOPPED:
if( tr_bencDictFindBool( t, "isFinished", &boolVal ) && boolVal )
tr_strlcpy( buf, "Finished", buflen );