refactor: rename SimilarSongs to ArtistRadio (#4248)

This commit is contained in:
Deluan Quintão
2025-06-25 18:21:14 -04:00
committed by GitHub
parent 45c408a674
commit 28bbd00dcc
3 changed files with 11 additions and 11 deletions

View File

@@ -343,7 +343,7 @@ func (api *Router) GetSimilarSongs(r *http.Request) (*responses.Subsonic, error)
}
count := p.IntOr("count", 50)
songs, err := api.provider.SimilarSongs(ctx, id, count)
songs, err := api.provider.ArtistRadio(ctx, id, count)
if err != nil {
return nil, err
}