diff --git a/ovos_workshop/skills/common_play.py b/ovos_workshop/skills/common_play.py index 8ea9a7d2..d89085a6 100644 --- a/ovos_workshop/skills/common_play.py +++ b/ovos_workshop/skills/common_play.py @@ -459,7 +459,7 @@ def __handle_ocp_query(self, message: Message): found = False # search this skill if MediaType is supported - if media_type in self.supported_media: + if any([media_type == m for m in self.supported_media]): # invoke the media search handlers to let the skill perform its search found = False for handler in self._search_handlers: