diff --git a/__init__.py b/__init__.py index 2d88f75..e1526c0 100644 --- a/__init__.py +++ b/__init__.py @@ -46,7 +46,7 @@ from ovos_utils import classproperty from ovos_utils.log import LOG from ovos_utils.process_utils import RuntimeRequirements -from ovos_workshop.decorators import intent_file_handler +from ovos_workshop.decorators import intent_handler class SupportSkill(NeonSkill): @@ -73,7 +73,7 @@ def support_email(self) -> str: """ return self.settings.get("support_email") or "support@neon.ai" - @intent_file_handler('contact_support.intent') + @intent_handler('contact_support.intent') def handle_contact_support(self, message: Message): """ Handle a user request to contact support diff --git a/locale/en-us/intent/contact_support.intent b/locale/en-us/intent/contact_support.intent index 4cf27e1..0f6a6eb 100644 --- a/locale/en-us/intent/contact_support.intent +++ b/locale/en-us/intent/contact_support.intent @@ -1,4 +1,4 @@ -(create|send|generate|i want|i need) (a |)(support|troubleshoot|troubleshooting|problem) (ticket|request|email|report|package) +(create|send|generate|i want|i need) (a |)(support|troubleshoot|troubleshooting|trouble|problem) (ticket|request|email|report|package) troubleshoot my device (contact|email) support report (a|an) (issue|problem|bug) \ No newline at end of file