diff --git a/src/osd.cpp b/src/osd.cpp index 1dd151349..92bc3309a 100644 --- a/src/osd.cpp +++ b/src/osd.cpp @@ -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;