mirror of
https://github.com/Cog-Creators/Red-DiscordBot.git
synced 2025-11-06 03:08:55 -05:00
Use Guild.fetch_ban() over Guild.bans() (#5656)
This commit is contained in:
parent
67e43eb00b
commit
d932abad16
@ -166,8 +166,11 @@ class KickBanMixin(MixinMeta):
|
|||||||
else:
|
else:
|
||||||
tempbans = await self.config.guild(guild).current_tempbans()
|
tempbans = await self.config.guild(guild).current_tempbans()
|
||||||
|
|
||||||
ban_list = [ban.user.id for ban in await guild.bans()]
|
try:
|
||||||
if user.id in ban_list:
|
await guild.fetch_ban(user)
|
||||||
|
except discord.NotFound:
|
||||||
|
pass
|
||||||
|
else:
|
||||||
if user.id in tempbans:
|
if user.id in tempbans:
|
||||||
async with self.config.guild(guild).current_tempbans() as tempbans:
|
async with self.config.guild(guild).current_tempbans() as tempbans:
|
||||||
tempbans.remove(user.id)
|
tempbans.remove(user.id)
|
||||||
@ -468,13 +471,14 @@ class KickBanMixin(MixinMeta):
|
|||||||
|
|
||||||
tempbans = await self.config.guild(guild).current_tempbans()
|
tempbans = await self.config.guild(guild).current_tempbans()
|
||||||
|
|
||||||
ban_list = await guild.bans()
|
|
||||||
for entry in ban_list:
|
|
||||||
for user_id in user_ids:
|
for user_id in user_ids:
|
||||||
if entry.user.id == user_id:
|
|
||||||
if user_id in tempbans:
|
if user_id in tempbans:
|
||||||
# We need to check if a user is tempbanned here because otherwise they won't be processed later on.
|
# We need to check if a user is tempbanned here because otherwise they won't be processed later on.
|
||||||
continue
|
continue
|
||||||
|
try:
|
||||||
|
await guild.fetch_ban(discord.Object(user_id))
|
||||||
|
except discord.NotFound:
|
||||||
|
pass
|
||||||
else:
|
else:
|
||||||
errors[user_id] = _("User with ID {user_id} is already banned.").format(
|
errors[user_id] = _("User with ID {user_id} is already banned.").format(
|
||||||
user_id=user_id
|
user_id=user_id
|
||||||
@ -903,14 +907,13 @@ class KickBanMixin(MixinMeta):
|
|||||||
guild = ctx.guild
|
guild = ctx.guild
|
||||||
author = ctx.author
|
author = ctx.author
|
||||||
audit_reason = get_audit_reason(ctx.author, reason, shorten=True)
|
audit_reason = get_audit_reason(ctx.author, reason, shorten=True)
|
||||||
bans = await guild.bans()
|
try:
|
||||||
bans = [be.user for be in bans]
|
ban_entry = await guild.fetch_ban(discord.Object(user_id))
|
||||||
user = discord.utils.get(bans, id=user_id)
|
except discord.NotFound:
|
||||||
if not user:
|
|
||||||
await ctx.send(_("It seems that user isn't banned!"))
|
await ctx.send(_("It seems that user isn't banned!"))
|
||||||
return
|
return
|
||||||
try:
|
try:
|
||||||
await guild.unban(user, reason=audit_reason)
|
await guild.unban(ban_entry.user, reason=audit_reason)
|
||||||
except discord.HTTPException:
|
except discord.HTTPException:
|
||||||
await ctx.send(_("Something went wrong while attempting to unban that user."))
|
await ctx.send(_("Something went wrong while attempting to unban that user."))
|
||||||
return
|
return
|
||||||
@ -920,7 +923,7 @@ class KickBanMixin(MixinMeta):
|
|||||||
guild,
|
guild,
|
||||||
ctx.message.created_at.replace(tzinfo=timezone.utc),
|
ctx.message.created_at.replace(tzinfo=timezone.utc),
|
||||||
"unban",
|
"unban",
|
||||||
user,
|
ban_entry.user,
|
||||||
author,
|
author,
|
||||||
reason,
|
reason,
|
||||||
until=None,
|
until=None,
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user