mirror of
https://github.com/tomahawk-player/tomahawk.git
synced 2025-04-13 04:21:51 +02:00
* Fixed ageToString() for time differences below 60 seconds.
This commit is contained in:
parent
8e99dbf01e
commit
f380317775
@ -219,11 +219,9 @@ ageToString( const QDateTime& time )
|
||||
{
|
||||
if ( mins > 1 )
|
||||
return QObject::tr( "%1 minutes" ).arg( mins );
|
||||
else
|
||||
return QObject::tr( "%1 minute" ).arg( mins );
|
||||
}
|
||||
|
||||
return QString();
|
||||
return QObject::tr( "1 minute" );
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user