1.1.0 #352

Merged
edraft merged 145 commits from 1.1.0 into master 2023-08-24 17:50:25 +02:00
Showing only changes of commit bd8bd40863 - Show all commits

View File

@ -47,6 +47,10 @@ class BaseReactionHandler:
log_msg += f" with {payload.emoji.name}"
try:
channel = guild.get_channel(payload.channel_id)
if channel is None:
self._logger.warn(__name__, f"Channel not found")
return
message = await channel.fetch_message(payload.message_id)
self._logger.info(
__name__,