[V3 Core] Fix url sent when doing [p]invite (#1461)

This commit is contained in:
palmtree5 2018-03-24 13:24:06 -08:00 committed by Will
parent 59281afe90
commit 45ee4755a6

View File

@ -235,7 +235,8 @@ class Core:
async def invite(self, ctx):
"""Show's Red's invite url"""
if self.bot.user.bot:
await ctx.author.send(discord.utils.oauth_url(self.bot.user.id))
app_info = await self.bot.application_info()
await ctx.author.send(discord.utils.oauth_url(app_info.id))
else:
await ctx.send("I'm not a bot account. I have no invite URL.")