Don't show the dash when starting a radio stream

This commit is contained in:
David Sansome 2010-02-26 22:13:13 +00:00
parent b3acccac97
commit dd04274e64
1 changed files with 1 additions and 1 deletions

View File

@ -29,7 +29,7 @@ void OSD::ReloadSettings() {
void OSD::SongChanged(const Song &song) {
qDebug() << __PRETTY_FUNCTION__;
QString summary(song.PrettyTitle());
if (!song.artist().isNull())
if (!song.artist().isEmpty())
summary = QString("%1 - %2").arg(song.artist(), summary);
QStringList message_parts;