Remove bold username

This commit is contained in:
Joakim Hellsén 2024-07-20 05:21:44 +02:00
commit 61550b513b
No known key found for this signature in database
GPG key ID: D196AE66FEBE1DC9

View file

@ -160,6 +160,7 @@ async def on_message(message: discord.Message) -> None:
# Remove LoviBot: from the response # Remove LoviBot: from the response
if response: if response:
response = response.removeprefix("LoviBot:").strip() response = response.removeprefix("LoviBot:").strip()
response = response.removeprefix("**LoviBot:**").strip()
if response: if response:
logger.info("Responding to message: %s with: %s", message.content, response) logger.info("Responding to message: %s with: %s", message.content, response)