We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2a91242 commit b757deaCopy full SHA for b757dea
bot.py
@@ -1527,7 +1527,7 @@ async def process_commands(self, message):
1527
thread = await self.threads.find(channel=ctx.channel)
1528
if thread is not None:
1529
# If thread is snoozed (moved), auto-unsnooze when a mod sends a message directly in channel
1530
- behavior = self.config.get("snooze_behavior", "delete").lower()
+ behavior = (self.config.get("snooze_behavior") or "delete").lower()
1531
if thread.snoozed and behavior == "move":
1532
if not thread.snooze_data:
1533
try:
0 commit comments