diff --git a/custom_components/plex_assistant/helpers.py b/custom_components/plex_assistant/helpers.py index a578870..1d010f5 100644 --- a/custom_components/plex_assistant/helpers.py +++ b/custom_components/plex_assistant/helpers.py @@ -56,7 +56,12 @@ def ifttt_webhook_callback(event): hass.services.call(DOMAIN, "command", {"command": event.data["command"]}) listener = hass.bus.async_listen("ifttt_webhook_received", ifttt_webhook_callback) - await hass.services.async_call("conversation", "process", {"text": "tell plex to initialize_plex_intent"}) + + try: + await hass.services.async_call("conversation", "process", {"text": "tell plex to initialize_plex_intent"}) + except: + pass + return listener