Show station name even on metadata error

This commit is contained in:
Přemysl Eric Janouch 2018-11-02 22:56:43 +01:00
parent 33f7405404
commit 23683424a6
Signed by: p
GPG Key ID: A0420B94F92B9493
1 changed files with 1 additions and 1 deletions

View File

@ -127,7 +127,7 @@ func metaProc(ctx context.Context, name string, out chan<- string) {
for {
meta, err := getMeta(name)
if err != nil {
current = "Error: " + err.Error()
current = name + " - " + err.Error()
interval = 30 * time.Second
} else {
current = meta.title