From 2952d2b143331df0fb039543c4b74dd21aaf28c7 Mon Sep 17 00:00:00 2001 From: Tim Wilson Date: Thu, 10 Sep 2020 11:10:56 -0600 Subject: [PATCH] bugfix notification subscription reactions were being removed from auto-update `t/list` messages --- bot.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/bot.py b/bot.py index fe2b58d..7e1e8f6 100644 --- a/bot.py +++ b/bot.py @@ -1661,9 +1661,9 @@ async def list_transfers(message, content="", repeat_msg_key=None): del msgs[-1] REPEAT_MSGS[repeat_msg_key]['msgs'] = msgs if message.channel.last_message_id != msgs[-1].id: - rxnEmoji = ['📜','🖨','❎'] + rxnEmoji = ['📜','🖨','❎','🔔','🔕'] else: - rxnEmoji = ['📜','❎'] + rxnEmoji = ['📜','❎','🔔','🔕'] else: msgs = [await message.channel.send(embed=e) for e in embeds] if message.author.dm_channel is not None and message.channel.id == message.author.dm_channel.id: