diff --git a/internal/radio/icecast.go b/internal/radio/icecast.go index e364c5e..208e302 100644 --- a/internal/radio/icecast.go +++ b/internal/radio/icecast.go @@ -60,7 +60,7 @@ type Song struct { func IcecastGetStatus(icecastURL string) (*IcecastStatus, error) { resp, err := http.Get(icecastURL) if err != nil { - return &IcecastStatus{}, err + return &IcecastStatus{SongName: "Offline"}, err } iceStatDTO := &IcecastStatusDTO{}