From 00526bbe8cd4529dc7828766e69b34d36c789bb2 Mon Sep 17 00:00:00 2001 From: Mike Gray Date: Sun, 29 Oct 2023 20:52:19 -0500 Subject: [PATCH] wrong method --- __init__.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/__init__.py b/__init__.py index fe3215b..06424d6 100644 --- a/__init__.py +++ b/__init__.py @@ -349,7 +349,7 @@ def _enable_wake_word(self, ww: str, message: Message) -> bool: if resp.data.get('error') == "ww not configured": LOG.warning(f"WW not configured at the system level, patching: {ww}") patch_config({"hotwords": {"hey_jarvis": {"active": True, "listen": True}}}) - resp = self._emit_ww_enable_message(ww, message) + resp = self._emit_enable_ww_message(ww, message) if resp and resp.data.get("error"): self.log.error(f"WW enable failed with response: {resp.data}") return False