feat: support internet radio stations for jukebox

fixes #481
This commit is contained in:
sentriz
2024-03-11 19:21:05 +01:00
parent 6ce1fe5a7e
commit 62d49a33d1
3 changed files with 15 additions and 3 deletions

View File

@@ -437,7 +437,7 @@ func (c *Controller) ServeJukebox(r *http.Request) *spec.Response { // nolint:go
case "get":
specPlaylist, err := getSpecPlaylist()
if err != nil {
return spec.NewError(10, "error getting status tracks: %v", err)
return spec.NewError(10, "error getting spec playlist: %v", err)
}
status, err := getSpecStatus()
if err != nil {