diff --git a/homeassistant/loader.py b/homeassistant/loader.py index 89c3442be6a..b65d6f34f7b 100644 --- a/homeassistant/loader.py +++ b/homeassistant/loader.py @@ -96,6 +96,11 @@ BLOCKED_CUSTOM_INTEGRATIONS: dict[str, BlockedIntegration] = { "dreame_vacuum": BlockedIntegration( AwesomeVersion("1.0.4"), "crashes Home Assistant" ), + # Added in 2024.5.5 because of + # https://github.com/sh00t2kill/dolphin-robot/issues/185 + "mydolphin_plus": BlockedIntegration( + AwesomeVersion("1.0.13"), "crashes Home Assistant" + ), } DATA_COMPONENTS = "components"