From 1ebe82fc4bf9321ac4dd953c9e5382b408e00f77 Mon Sep 17 00:00:00 2001 From: Erik Montnemery Date: Fri, 4 Mar 2022 23:17:43 +0100 Subject: [PATCH] Fix reload of media player groups (#67653) --- homeassistant/components/group/__init__.py | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/homeassistant/components/group/__init__.py b/homeassistant/components/group/__init__.py index b36d4f1033f..8e595d75db6 100644 --- a/homeassistant/components/group/__init__.py +++ b/homeassistant/components/group/__init__.py @@ -59,11 +59,12 @@ SERVICE_SET = "set" SERVICE_REMOVE = "remove" PLATFORMS = [ - Platform.LIGHT, - Platform.COVER, - Platform.NOTIFY, - Platform.FAN, Platform.BINARY_SENSOR, + Platform.COVER, + Platform.FAN, + Platform.LIGHT, + Platform.MEDIA_PLAYER, + Platform.NOTIFY, ] REG_KEY = f"{DOMAIN}_registry"