- info.text = tostring(song.artist or "") .. " - " .. tostring(song.title or "") .. "\n"
- .. tostring(song.album or "")
+ if not song.artist then
+ info.text = string.format("%s", song.title or song.file)
+ else
+ info.text = string.format("%s - %s", song.artist, song.title)
+ end
+ if song.album then
+ info.text = info.text .. "\n" .. tostring(song.album or "")
+ end