From 37c61466a434c7805db9efbb3432b680e5595e13 Mon Sep 17 00:00:00 2001 From: Luna Mendes Date: Fri, 28 Sep 2018 00:08:39 -0300 Subject: [PATCH] blueprints.channels: fix TYPING_START --- litecord/blueprints/channels.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/litecord/blueprints/channels.py b/litecord/blueprints/channels.py index 795ddfb..b7b7fa4 100644 --- a/litecord/blueprints/channels.py +++ b/litecord/blueprints/channels.py @@ -277,8 +277,8 @@ async def trigger_typing(channel_id): guild_id = await channel_check(user_id, channel_id) await app.dispatcher.dispatch_guild(guild_id, 'TYPING_START', { - 'channel_id': channel_id, - 'user_id': user_id, + 'channel_id': str(channel_id), + 'user_id': str(user_id), 'timestamp': int(time.time()), })