Skip to content

Commit 79acb35

Browse files
committed
Updates channel.move, bot.close, emoji changes
1 parent 77a1ac4 commit 79acb35

File tree

4 files changed

+8
-8
lines changed

4 files changed

+8
-8
lines changed

bot.py

+4-4
Original file line numberDiff line numberDiff line change
@@ -519,7 +519,7 @@ async def on_connect(self):
519519
await self.api.validate_database_connection()
520520
except Exception:
521521
logger.debug("Logging out due to failed database connection.")
522-
return await self.logout()
522+
return await self.close()
523523

524524
logger.debug("Connected to gateway.")
525525
await self.config.refresh()
@@ -534,7 +534,7 @@ async def on_ready(self):
534534

535535
if self.guild is None:
536536
logger.error("Logging out due to invalid GUILD_ID.")
537-
return await self.logout()
537+
return await self.close()
538538

539539
logger.line()
540540
logger.debug("Client ready.")
@@ -640,7 +640,7 @@ async def convert_emoji(self, name: str) -> str:
640640
ctx = SimpleNamespace(bot=self, guild=self.modmail_guild)
641641
converter = commands.EmojiConverter()
642642

643-
if name not in UNICODE_EMOJI:
643+
if name not in UNICODE_EMOJI['en']:
644644
try:
645645
name = await converter.convert(ctx, name.strip(":"))
646646
except commands.BadArgument as e:
@@ -1607,7 +1607,7 @@ async def autoupdate(self):
16071607
embed.set_footer(text=f"Updating Modmail v{self.version} " f"-> v{latest.version}")
16081608
if self.config["update_notifications"]:
16091609
await channel.send(embed=embed)
1610-
await self.logout()
1610+
return await self.close()
16111611

16121612
async def before_autoupdate(self):
16131613
await self.wait_for_connected()

cogs/modmail.py

+2-1
Original file line numberDiff line numberDiff line change
@@ -322,7 +322,8 @@ async def move(self, ctx, *, arguments):
322322
silent_words = ["silent", "silently"]
323323
silent = any(word in silent_words for word in options.split())
324324

325-
await thread.channel.edit(category=category, sync_permissions=True)
325+
await thread.channel.move(category=category, end=True, sync_permissions=True,
326+
reason=f"{ctx.author} moved this thread.")
326327

327328
if self.bot.config["thread_move_notify"] and not silent:
328329
embed = discord.Embed(

cogs/utility.py

+1-1
Original file line numberDiff line numberDiff line change
@@ -1990,7 +1990,7 @@ async def update(self, ctx, *, flag: str = ""):
19901990
)
19911991

19921992
await ctx.send(embed=embed)
1993-
await self.bot.logout()
1993+
return await self.bot.close()
19941994
else:
19951995
embed = discord.Embed(
19961996
title="Already up to date",

core/clients.py

+1-2
Original file line numberDiff line numberDiff line change
@@ -377,9 +377,8 @@ def __init__(self, bot):
377377
except ConfigurationError as e:
378378
logger.critical(
379379
"Your MongoDB CONNECTION_URI might be copied wrong, try re-copying from the source again. "
380-
"Otherwise noted in the following message:"
380+
"Otherwise noted in the following message:\n%s", e
381381
)
382-
logger.critical(e)
383382
sys.exit(0)
384383

385384
super().__init__(bot, db)

0 commit comments

Comments
 (0)