Skip to content

Commit

Permalink
Load mobile_app notify platform with eager_start (#114700)
Browse files Browse the repository at this point in the history
  • Loading branch information
bdraco authored Apr 4, 2024
1 parent 1462c99 commit 7b64097
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion homeassistant/components/mobile_app/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,8 @@ async def async_setup(hass: HomeAssistant, config: ConfigType) -> bool:
)

hass.async_create_task(
discovery.async_load_platform(hass, Platform.NOTIFY, DOMAIN, {}, config)
discovery.async_load_platform(hass, Platform.NOTIFY, DOMAIN, {}, config),
eager_start=True,
)

websocket_api.async_setup_commands(hass)
Expand Down

0 comments on commit 7b64097

Please sign in to comment.