Skip to content

Commit

Permalink
Merge pull request #83 from jmillerv/37-cannot-play-web-radios
Browse files Browse the repository at this point in the history
#37: Cannot Play All Web Radios
  • Loading branch information
jmillerv authored Sep 23, 2023
2 parents 2d469e4 + 2a5323b commit 024c284
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion content/web_radio.go
Original file line number Diff line number Diff line change
Expand Up @@ -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 {
Expand Down

0 comments on commit 024c284

Please sign in to comment.