Skip to content

Commit

Permalink
Fixed messaging issues
Browse files Browse the repository at this point in the history
  • Loading branch information
TomCasavant committed Jan 20, 2021
1 parent f8e601b commit da1c044
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion maubot.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand Down
2 changes: 1 addition & 1 deletion reddit.py
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit da1c044

Please sign in to comment.