Skip to content

Commit

Permalink
fix: default to dad jokes (#49)
Browse files Browse the repository at this point in the history
per the skill name
  • Loading branch information
JarbasAl authored Dec 26, 2024
1 parent 22398fe commit ff9bc5b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion __init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ def handle_joke(self, message: Optional[Message] = None) -> None:
elif self.lang.split("-")[0] in ["cs", "es", "eu", "gl", "hu", "it", "pl", "sv"]:
self.speak_dialog("dev_jokes")
else:
self.speak_dialog("general_jokes")
self.speak_dialog("dad_jokes")

@intent_handler("search_joke.intent")
def handle_search_joke(self, message: Message) -> None:
Expand Down

0 comments on commit ff9bc5b

Please sign in to comment.