diff --git a/pkg/service/soundtouchweb/handler.go b/pkg/service/soundtouchweb/handler.go index 265af40..b3510b1 100644 --- a/pkg/service/soundtouchweb/handler.go +++ b/pkg/service/soundtouchweb/handler.go @@ -1123,11 +1123,6 @@ func (app *WebApp) HandlePlayRadioBrowser(w http.ResponseWriter, r *http.Request ItemName: req.Name, IsPresetable: true, } - // Only pass SourceAccount when it's a real credential, not the placeholder - // value that speakers echo back (source name == source account, e.g. "TUNEIN"). - if req.SourceAccount != "" && req.SourceAccount != req.Source { - contentItem.SourceAccount = req.SourceAccount - } if err := device.Client.SelectContentItem(contentItem); err != nil { app.sendError(w, err.Error(), http.StatusInternalServerError)