better error handling

This commit is contained in:
wea_ondara
2024-04-18 15:50:24 +02:00
parent b311c9372a
commit 7bac6ed1a3
2 changed files with 6 additions and 1 deletions

View File

@@ -19,6 +19,10 @@ async def on_message(message):
if message.author == discord_client.user:
return
if message.content.isspace():
await message.channel.send('### Empty message')
return
response = chat_client.input(message.content)
await message.channel.send(response)