Deprecated entities (i.e. SUPPORT_BROWSE_MEDIA
) have been removed from HA 2024.1, leading to an exception
#58
Labels
bug
Something isn't working
When browsing media on a
teufel_raumfeld
device in HA 2024.1, you get the following error:Reason is that the
teufel_raumfeld
implementation still returns the old int-based constants for thesupported_features
method here.According to the docs, these int contents have been removed in 2024.1, so this is why this error occurs. We are forced to use the
MediaPlayerEntityFeature
enum according to the docs.I think what needs to be done is in the
media_player.py
of this repo here, we need to replacewith something like
Similar issues might come up from other constants as all of these integer based constants seem to have been retired.
The text was updated successfully, but these errors were encountered: