fix(subsonic): getLyrics does not try to retrieve lyrics from external files (#4232)

This commit is contained in:
wilywyrm
2025-06-15 09:40:40 -07:00
committed by GitHub
parent 65029968ab
commit 9249659773
2 changed files with 2 additions and 3 deletions
+1 -1
View File
@@ -98,7 +98,7 @@ func (api *Router) GetLyrics(r *http.Request) (*responses.Subsonic, error) {
response := newResponse()
lyricsResponse := responses.Lyrics{}
response.Lyrics = &lyricsResponse
mediaFiles, err := api.ds.MediaFile(r.Context()).GetAll(filter.SongWithLyrics(artist, title))
mediaFiles, err := api.ds.MediaFile(r.Context()).GetAll(filter.SongWithArtistTitle(artist, title))
if err != nil {
return nil, err