Typing() fixx?

This commit is contained in:
Bobloy 2018-03-07 12:41:54 -05:00
parent c93752088f
commit 38f5246679

View File

@ -126,8 +126,8 @@ class Chatter:
text = text.replace(to_strip, "", 1) text = text.replace(to_strip, "", 1)
async with channel.typing(): async with channel.typing():
response = self.chatbot.get_response(text) response = self.chatbot.get_response(text)
if response: if not response:
await channel.send(response) response = ":thinking:"
else: await channel.send(response)
await channel.send(":thinking:")