blueprints.channels: fix TYPING_START

This commit is contained in:
Luna Mendes 2018-09-28 00:08:39 -03:00
parent f5db1038eb
commit 37c61466a4
1 changed files with 2 additions and 2 deletions

View File

@ -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()),
})