From: Eric Munson Date: Mon, 24 Nov 2025 15:47:04 +0000 (-0500) Subject: Subsonic: Add ProviderFeature for Favorites (#2667) X-Git-Url: https://git.kitaultman.com/?a=commitdiff_plain;h=d09adea93ce8e3c4cb9ee0d1bccfaecaaa01ad28;p=music-assistant-server.git Subsonic: Add ProviderFeature for Favorites (#2667) These features were missing from f2c30347988e5c31799a9ef9efa4f19e5eff1e60 Add the features we now provide. Signed-off-by: Eric B Munson --- diff --git a/music_assistant/providers/opensubsonic/__init__.py b/music_assistant/providers/opensubsonic/__init__.py index f75ba457..401c6096 100644 --- a/music_assistant/providers/opensubsonic/__init__.py +++ b/music_assistant/providers/opensubsonic/__init__.py @@ -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, }