From 2a5323baef9da79d7c6087281139611a629fef0f Mon Sep 17 00:00:00 2001 From: Jeremiah Date: Sat, 23 Sep 2023 16:19:03 -0400 Subject: [PATCH] remove command that implied that all streams were playlists --- content/web_radio.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/content/web_radio.go b/content/web_radio.go index 05e47e9..54fb374 100644 --- a/content/web_radio.go +++ b/content/web_radio.go @@ -27,7 +27,7 @@ func (w *WebRadio) Get() error { // setup web radio stream webRadioStream.playerName = streamPlayerName webRadioStream.url = w.URL - webRadioStream.command = exec.Command(webRadioStream.playerName, "-quiet", "-playlist", webRadioStream.url) + webRadioStream.command = exec.Command(webRadioStream.playerName, "-quiet", webRadioStream.url) webRadioStream.in, err = webRadioStream.command.StdinPipe() if err != nil {