diff --git a/maubot.yaml b/maubot.yaml index a37873f..31809bc 100644 --- a/maubot.yaml +++ b/maubot.yaml @@ -9,7 +9,7 @@ maubot: 0.1.0 id: casavant.tom.reddit # A PEP 440 compliant version string. -version: 1.3.0 +version: 1.4.0 # The SPDX license identifier for the plugin. https://spdx.org/licenses/ # Optional, assumes all rights reserved if omitted. diff --git a/reddit.py b/reddit.py index f34b6c1..fffae60 100644 --- a/reddit.py +++ b/reddit.py @@ -35,4 +35,4 @@ async def handler(self, evt: MessageEvent, subs: List[Tuple[str, str]]) -> None: f"{all_subs} is probably what you're looking for", ] response = f"{choice(condescending)}" - await evt.reply(response, html_in_markdown=True) # Reply to user + await evt.reply(response, allow_html=True) # Reply to user