From 23683424a62dc7f179592c74294b21d32e2670e7 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?P=C5=99emysl=20Janouch?= Date: Fri, 2 Nov 2018 22:56:43 +0100 Subject: Show station name even on metadata error --- main.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/main.go b/main.go index 8946aa5..1b01bfa 100644 --- a/main.go +++ b/main.go @@ -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 -- cgit v1.2.3