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