diff --git a/ovos_workshop/skills/common_play.py b/ovos_workshop/skills/common_play.py index 18a49977..5bc08224 100644 --- a/ovos_workshop/skills/common_play.py +++ b/ovos_workshop/skills/common_play.py @@ -440,6 +440,7 @@ def __handle_ocp_query(self, message: Message): "skill_name": self.skill_aliases[0], "thumbnail": self.skill_icon, })) + found = False # search this skill if MediaType is supported if media_type in self.supported_media: # invoke the media search handlers to let the skill perform its search @@ -487,7 +488,7 @@ def __handle_ocp_query(self, message: Message): if self._stop_event.is_set(): break else: # skip this skill, it doesn't handle this media type - found = False + LOG.debug(f"skipping {self.skill_id}, it does not support media type: {media_type}") if not found: # Signal we are done (can't handle it)