fix qobuz interpreter artist urls

This commit is contained in:
2026-06-10 12:34:37 +02:00
parent fa39582849
commit db26a40415
2 changed files with 19 additions and 0 deletions

View File

@@ -69,6 +69,9 @@ func parseQobuz(raw string, parts []string) *ParsedURL {
}
mediaType := parts[0]
if mediaType == "interpreter" {
mediaType = "artist"
}
if !isSupportedMedia(mediaType) {
return nil
}