Added reaction channel null check #318

This commit is contained in:
Sven Heidemann 2023-06-08 08:47:56 +02:00
parent ff009ffb61
commit bd8bd40863

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__,