Subsonic: Add ProviderFeature for Favorites (#2667)
authorEric Munson <eric@munsonfam.org>
Mon, 24 Nov 2025 15:47:04 +0000 (10:47 -0500)
committerGitHub <noreply@github.com>
Mon, 24 Nov 2025 15:47:04 +0000 (10:47 -0500)
These features were missing from
f2c30347988e5c31799a9ef9efa4f19e5eff1e60
Add the features we now provide.

Signed-off-by: Eric B Munson <eric@munsonfam.org>
music_assistant/providers/opensubsonic/__init__.py

index f75ba457f3cab3739e592da09461ee10d13f2414..401c6096613b0fdb843a13bcefcf3482c74132e9 100644 (file)
@@ -43,6 +43,9 @@ SUPPORTED_FEATURES = {
     ProviderFeature.PLAYLIST_CREATE,
     ProviderFeature.LIBRARY_PODCASTS,
     ProviderFeature.LIBRARY_PODCASTS_EDIT,
+    ProviderFeature.FAVORITE_ALBUMS_EDIT,
+    ProviderFeature.FAVORITE_ARTISTS_EDIT,
+    ProviderFeature.FAVORITE_TRACKS_EDIT,
 }