我在机器人上设置了一条命令,以从服务器提取活动邀请,但似乎无法将结果转换为url。
我试图将{invites}更改为{invites.url},但似乎没有效果
@commands.is_owner()
@commands.command()
async def fi(self, ctx, id: int):
server = self.bot.get_guild(id)
invites = await server.invites()
fetching = await ctx.send("Fetching Invites...")
await fetching.edit(content=f"All Active Invites Codes: \n {invites}")
await asyncio.sleep(8)
await fetching.delete()
# Fetches invite codes