mirror of
https://github.com/transmission/transmission.git
synced 2026-05-08 09:39:08 +01:00
#671 "torrent queuing" -- fix status string for queued torrents in transmission-remote
This commit is contained in:
@@ -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 );
|
||||
|
||||
Reference in New Issue
Block a user