From f030504b6f3f1a5b96c28fe99fe6c9c5fe49de66 Mon Sep 17 00:00:00 2001 From: Phxntxm Date: Thu, 22 Sep 2016 20:53:05 -0500 Subject: [PATCH] Corrected who was searched on twitch lookups. I fixed this before...what happened...? --- cogs/twitch.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/cogs/twitch.py b/cogs/twitch.py index a3d68c1..acff077 100644 --- a/cogs/twitch.py +++ b/cogs/twitch.py @@ -98,7 +98,7 @@ class Twitch: member = ctx.message.author twitch_channels = await config.get_content('twitch') - result = twitch_channels.get(ctx.message.author.id) + result = twitch_channels.get(member.id) if result is None: await self.bot.say("{} has not saved their twitch URL yet!".format(member.name)) return