sw: Allow empty artist
This commit is contained in:
parent
1cbc6063d6
commit
7efac00348
@ -155,7 +155,11 @@ class radioserv:
|
||||
|
||||
# Song title
|
||||
try:
|
||||
title = currentsong['title'] + " by " + currentsong['artist']
|
||||
title = currentsong['title']
|
||||
try:
|
||||
title += " by " + currentsong['artist']
|
||||
except:
|
||||
pass
|
||||
except:
|
||||
try:
|
||||
title = currentsong['file'];
|
||||
|
Loading…
Reference in New Issue
Block a user