From d09adea93ce8e3c4cb9ee0d1bccfaecaaa01ad28 Mon Sep 17 00:00:00 2001 From: Eric Munson Date: Mon, 24 Nov 2025 10:47:04 -0500 Subject: [PATCH] Subsonic: Add ProviderFeature for Favorites (#2667) These features were missing from f2c30347988e5c31799a9ef9efa4f19e5eff1e60 Add the features we now provide. Signed-off-by: Eric B Munson --- music_assistant/providers/opensubsonic/__init__.py | 3 +++ 1 file changed, 3 insertions(+) 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, } -- 2.34.1