From 2490e27dfc663a641888cbbc9c9406d48da9fbb4 Mon Sep 17 00:00:00 2001 From: miro Date: Thu, 31 Oct 2024 13:26:26 +0000 Subject: [PATCH] delegate skill activation to ovos-core (less bus spam) --- ovos_workshop/skills/fallback.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/ovos_workshop/skills/fallback.py b/ovos_workshop/skills/fallback.py index 1b84d4f6..8cfe0054 100644 --- a/ovos_workshop/skills/fallback.py +++ b/ovos_workshop/skills/fallback.py @@ -185,7 +185,7 @@ def _handle_fallback_request(self, message: Message): try: handler_name = get_handler_name(handler) # call handler, conditionally activating the skill - status = self._conditional_activate(handler, message=message) + status = handler(message) if status: # indicate completion break