diff --git a/src/cogs/utils.py b/src/cogs/utils.py index 7e85a33..5a57bbe 100644 --- a/src/cogs/utils.py +++ b/src/cogs/utils.py @@ -387,6 +387,8 @@ class Utils(commands.Cog): if user == None: return await self._whois(ctx, True) else: + if isinstance(user, int): + user = await self.client.fetch_user(user) return await self._whois(ctx, user, True) @commands.command(name='sondage')