diff --git a/software/webradio.py b/software/webradio.py index 9f8b643..8bd5a9c 100644 --- a/software/webradio.py +++ b/software/webradio.py @@ -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'];